mirror of
https://github.com/qgis/QGIS.git
synced 2025-12-05 00:04:40 -05:00
[Processing] Fix bug in reading ParameterMultipleInput in OTB algorithms.
This commit is contained in:
parent
16f309b617
commit
b8c25251df
@ -267,7 +267,7 @@ class OTBAlgorithm(GeoAlgorithm):
|
||||
elif isinstance(param, ParameterMultipleInput):
|
||||
commands.append(param.name)
|
||||
files = str(param.value).split(";")
|
||||
paramvalue = " ".join(["\"" + f + "\"" for f in files])
|
||||
paramvalue = " ".join(["\"" + f + " \"" for f in files])
|
||||
commands.append(paramvalue)
|
||||
elif isinstance(param, ParameterSelection):
|
||||
commands.append(param.name)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user