Skip to content

Commit

Permalink
GRASS parameters values needs always to be escaped
Browse files Browse the repository at this point in the history
  • Loading branch information
gioman committed Oct 15, 2013
1 parent bad4b77 commit 1038cd4
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 1038cd4

Please sign in to comment.