Skip to content

Commit

Permalink
Update python/plugins/sextante/saga/SagaAlgorithm.py
Browse files Browse the repository at this point in the history
Add quotes to input vector/raster paths parameters
  • Loading branch information
giohappy committed Nov 9, 2012
1 parent a2d4347 commit 17c5e37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/sextante/saga/SagaAlgorithm.py
Expand Up @@ -243,7 +243,7 @@ def processAlgorithm(self, progress):
if value in self.exportedLayers.keys():
command+=(" -" + param.name + " \"" + self.exportedLayers[value] + "\"")
else:
command+=(" -" + param.name + " " + value)
command+=(" -" + param.name + " \"" + value + "\"")
elif isinstance(param, ParameterMultipleInput):
s = param.value
for layer in self.exportedLayers.keys():
Expand Down

0 comments on commit 17c5e37

Please sign in to comment.