Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Processing] Fix bug in reading ParameterMultipleInput in OTB algorit…
…hms.
  • Loading branch information
radosuav committed Feb 18, 2015
1 parent 16f309b commit b8c2525
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/otb/OTBAlgorithm.py
Expand Up @@ -267,7 +267,7 @@ def processAlgorithm(self, progress):
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)
Expand Down

0 comments on commit b8c2525

Please sign in to comment.