Skip to content

Commit 0893db7

Browse files
committed
fixed #6737
1 parent 19826de commit 0893db7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/sextante/saga/SagaAlgorithm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def processAlgorithm(self, progress):
261261
s = values[i] + "\t" + values[i+1] + "\t" + values[i+2] + "\n"
262262
f.write(s)
263263
f.close()
264-
command+=( " -" + param.name + " " + tempTableFile)
264+
command+=( " -" + param.name + " \"" + tempTableFile + "\"")
265265
elif isinstance(param, ParameterExtent):
266266
#'we have to substract/add half cell size, since saga is center based, not corner based
267267
halfcell = self.getOutputCellsize() / 2

0 commit comments

Comments
 (0)