We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent e8f077f commit 0cb8286Copy full SHA for 0cb8286
python/plugins/processing/algs/grass7/Grass7Algorithm.py
@@ -420,12 +420,12 @@ def processCommand(self):
420
421
for out in self.outputs:
422
if isinstance(out, OutputFile):
423
- command += ' > ' + out.value
+ command += ' > "{}"'.format(out.value)
424
elif not isinstance(out, OutputHTML):
425
# We add an output name to make sure it is unique if the session
426
# uses this algorithm several times.
427
uniqueOutputName = out.name + self.uniqueSufix
428
- command += ' ' + out.name + '=' + uniqueOutputName
+ command += ' {}="{}"'.format(out.name, uniqueOutputName)
429
430
# Add output file to exported layers, to indicate that
431
# they are present in GRASS
0 commit comments