File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
python/plugins/processing/algs/grass7 Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -395,16 +395,16 @@ def processCommand(self):
395
395
if isinstance (param , (ParameterRaster , ParameterVector )):
396
396
value = param .value
397
397
if value in self .exportedLayers .keys ():
398
- command += ' ' + param .name + '=' \
399
- + self .exportedLayers [value ]
398
+ command += ' ' + param .name + '=" ' \
399
+ + self .exportedLayers [value ] + '"'
400
400
else :
401
- command += ' ' + param .name + '=' + value
401
+ command += ' ' + param .name + '=" ' + value + '"'
402
402
elif isinstance (param , ParameterMultipleInput ):
403
403
s = param .value
404
404
for layer in self .exportedLayers .keys ():
405
405
s = s .replace (layer , self .exportedLayers [layer ])
406
406
s = s .replace (';' , ',' )
407
- command += ' ' + param .name + '=' + s
407
+ command += ' ' + param .name + '=" ' + s + '"'
408
408
elif isinstance (param , ParameterBoolean ):
409
409
if param .value :
410
410
command += ' ' + param .name
You can’t perform that action at this time.
0 commit comments