Skip to content

Commit

Permalink
Merge pull request #947 from gioman/escapegrassparameters
Browse files Browse the repository at this point in the history
[processing] GRASS parameters values needs always to be escaped
  • Loading branch information
volaya committed Oct 20, 2013
2 parents a9fea57 + 1038cd4 commit f724efd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/grass/GrassAlgorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def processAlgorithm(self, progress):
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:
Expand Down

0 comments on commit f724efd

Please sign in to comment.