Skip to content

Commit 17c5e37

Browse files
committedNov 9, 2012
Update python/plugins/sextante/saga/SagaAlgorithm.py
Add quotes to input vector/raster paths parameters
1 parent a2d4347 commit 17c5e37

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)
Please sign in to comment.