Skip to content

Commit 1038cd4

Browse files
author
gioman
committedOct 15, 2013
GRASS parameters values needs always to be escaped
1 parent bad4b77 commit 1038cd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/grass/GrassAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ def processAlgorithm(self, progress):
335335
elif isinstance(param, ParameterString):
336336
command += ' ' + param.name + '="' + str(param.value) + '"'
337337
else:
338-
command += ' ' + param.name + '=' + str(param.value)
338+
command += ' ' + param.name + '="' + str(param.value) + '"'
339339

340340
uniqueSufix = str(uuid.uuid4()).replace('-', '')
341341
for out in self.outputs:

0 commit comments

Comments
 (0)
Please sign in to comment.