Showing with 1 addition and 1 deletion.
  1. +1 −1 python/plugins/processing/grass/GrassAlgorithm.py
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