GRASS parameters values needs always to be escaped

This commit is contained in:
gioman 2013-10-15 20:27:34 +01:00
parent bad4b7798f
commit 1038cd42fb

View File

@ -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: