mirror of
https://github.com/qgis/QGIS.git
synced 2025-12-07 00:03:52 -05:00
Update python/plugins/sextante/saga/SagaAlgorithm.py
Add quotes to input vector/raster paths parameters
This commit is contained in:
parent
a2d434700d
commit
17c5e37060
@ -243,7 +243,7 @@ class SagaAlgorithm(GeoAlgorithm):
|
||||
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():
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user