We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 37b5df7 commit dd0e86fCopy full SHA for dd0e86f
python/plugins/GdalTools/tools/doGrid.py
@@ -196,7 +196,7 @@ def algorithmArguments(self, index):
196
arguments.append("angle=" + str(self.datametricsAngleSpin.value()))
197
arguments.append("min_points=" + str(self.datametricsMinPointsSpin.value()))
198
arguments.append("nodata=" + str(self.datametricsNoDataSpin.value()))
199
- return arguments.join(":")
+ return ':'.join(arguments)
200
201
def loadFields(self, vectorFile = ''):
202
self.zfieldCombo.clear()
0 commit comments