Skip to content

Commit c4eb1fb

Browse files
committedMay 6, 2015
Merge pull request #1910 from radosuav/obt_fix
[Processing] Fix bug in reading ParameterMultipleInput in OTB algorithms.
2 parents 6fbb2d6 + b8c2525 commit c4eb1fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/algs/otb/OTBAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ def processAlgorithm(self, progress):
269269
elif isinstance(param, ParameterMultipleInput):
270270
commands.append(param.name)
271271
files = str(param.value).split(";")
272-
paramvalue = " ".join(["\"" + f + "\"" for f in files])
272+
paramvalue = " ".join(["\"" + f + " \"" for f in files])
273273
commands.append(paramvalue)
274274
elif isinstance(param, ParameterSelection):
275275
commands.append(param.name)

0 commit comments

Comments
 (0)
Please sign in to comment.