Skip to content

Commit

Permalink
fixed #6737
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Nov 20, 2012
1 parent 19826de commit 0893db7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/sextante/saga/SagaAlgorithm.py
Expand Up @@ -261,7 +261,7 @@ def processAlgorithm(self, progress):
s = values[i] + "\t" + values[i+1] + "\t" + values[i+2] + "\n"
f.write(s)
f.close()
command+=( " -" + param.name + " " + tempTableFile)
command+=( " -" + param.name + " \"" + tempTableFile + "\"")
elif isinstance(param, ParameterExtent):
#'we have to substract/add half cell size, since saga is center based, not corner based
halfcell = self.getOutputCellsize() / 2
Expand Down

0 comments on commit 0893db7

Please sign in to comment.