Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] fix missed quotes in OTB provider (fix #14557)
  • Loading branch information
alexbruy committed Apr 10, 2016
1 parent badea8c commit 8eb79db
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/plugins/processing/algs/otb/OTBSpecific_XMLLoading.py
Expand Up @@ -171,7 +171,7 @@ def adaptColorMapping(commands_list):
The output of this algorithm must be in uint8.
"""
indexInput = commands_list.index("-out")
commands_list[indexInput + 1] = commands_list[indexInput + 1] + " uint8"
commands_list[indexInput + 1] = commands_list[indexInput + 1] + '" "uint8"'
return commands_list


Expand All @@ -188,7 +188,6 @@ def adaptStereoFramework(commands_list):
argumentToRemove = commands_list2[index - 1]
commands_list2.remove(item)
commands_list2.remove(argumentToRemove)
#commands_list2.append(item)
return commands_list2


Expand Down

0 comments on commit 8eb79db

Please sign in to comment.