Skip to content

Commit d49c7d7

Browse files
committed
Merge pull request #324 from giohappy/master
Quote input vector/raster path parameter in Sextante SagaAlgorithm
2 parents a2d4347 + 17c5e37 commit d49c7d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/sextante/saga/SagaAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ def processAlgorithm(self, progress):
243243
if value in self.exportedLayers.keys():
244244
command+=(" -" + param.name + " \"" + self.exportedLayers[value] + "\"")
245245
else:
246-
command+=(" -" + param.name + " " + value)
246+
command+=(" -" + param.name + " \"" + value + "\"")
247247
elif isinstance(param, ParameterMultipleInput):
248248
s = param.value
249249
for layer in self.exportedLayers.keys():

0 commit comments

Comments
 (0)