mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-15 00:04:00 -04:00
Merge pull request #1910 from radosuav/obt_fix
[Processing] Fix bug in reading ParameterMultipleInput in OTB algorithms.
This commit is contained in:
commit
c4eb1fb13b
@ -269,7 +269,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