Showing with 1 addition and 1 deletion.
  1. +1 −1 python/plugins/sextante/saga/SagaAlgorithm.py
2 changes: 1 addition & 1 deletion python/plugins/sextante/saga/SagaAlgorithm.py
Original file line number Diff line number Diff line change
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