mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
Merge pull request #947 from gioman/escapegrassparameters
[processing] GRASS parameters values needs always to be escaped
This commit is contained in:
commit
f724efd76c
@ -335,7 +335,7 @@ class GrassAlgorithm(GeoAlgorithm):
|
||||
elif isinstance(param, ParameterString):
|
||||
command += ' ' + param.name + '="' + str(param.value) + '"'
|
||||
else:
|
||||
command += ' ' + param.name + '=' + str(param.value)
|
||||
command += ' ' + param.name + '="' + str(param.value) + '"'
|
||||
|
||||
uniqueSufix = str(uuid.uuid4()).replace('-', '')
|
||||
for out in self.outputs:
|
||||
|
Loading…
x
Reference in New Issue
Block a user