Showing with 2 additions and 2 deletions.
  1. +1 −1 python/plugins/sextante/grass/description/v.extract.txt
  2. +1 −1 python/plugins/sextante/saga/SagaAlgorithm.py
2 changes: 1 addition & 1 deletion python/plugins/sextante/grass/description/v.extract.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ Vector (v.*)
ParameterVector|input|Name of input vector map|-1|False
ParameterString|where|WHERE conditions of SQL statement without 'where' keyword|
ParameterBoolean|-d|Dissolve common boundaries|True
OutputVector|Name for output vector map|output
OutputVector|output|Name for output vector map

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