Skip to content

Commit b8c2525

Browse files
author
radosuav
committedFeb 18, 2015
[Processing] Fix bug in reading ParameterMultipleInput in OTB algorithms.
1 parent 16f309b commit b8c2525

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
@@ -267,7 +267,7 @@ def processAlgorithm(self, progress):
267267
elif isinstance(param, ParameterMultipleInput):
268268
commands.append(param.name)
269269
files = str(param.value).split(";")
270-
paramvalue = " ".join(["\"" + f + "\"" for f in files])
270+
paramvalue = " ".join(["\"" + f + " \"" for f in files])
271271
commands.append(paramvalue)
272272
elif isinstance(param, ParameterSelection):
273273
commands.append(param.name)

0 commit comments

Comments
 (0)
Please sign in to comment.