Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #1910 from radosuav/obt_fix
[Processing] Fix bug in reading ParameterMultipleInput in OTB algorithms.
  • Loading branch information
volaya committed May 6, 2015
2 parents 6fbb2d6 + b8c2525 commit c4eb1fb
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 @@ -269,7 +269,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 c4eb1fb

Please sign in to comment.