Skip to content

Commit

Permalink
Merge pull request #324 from giohappy/master
Browse files Browse the repository at this point in the history
Quote input vector/raster path parameter in Sextante SagaAlgorithm
  • Loading branch information
volaya committed Nov 9, 2012
2 parents a2d4347 + 17c5e37 commit d49c7d7
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 d49c7d7

Please sign in to comment.