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.
2 parents 6fbb2d6 + b8c2525 commit c4eb1fbCopy full SHA for c4eb1fb
python/plugins/processing/algs/otb/OTBAlgorithm.py
@@ -269,7 +269,7 @@ def processAlgorithm(self, progress):
269
elif isinstance(param, ParameterMultipleInput):
270
commands.append(param.name)
271
files = str(param.value).split(";")
272
- paramvalue = " ".join(["\"" + f + "\"" for f in files])
+ paramvalue = " ".join(["\"" + f + " \"" for f in files])
273
commands.append(paramvalue)
274
elif isinstance(param, ParameterSelection):
275
0 commit comments