Skip to content

Commit

Permalink
[Processing] [OTB] fixed wrong command when alg help is not found
Browse files Browse the repository at this point in the history
fixes #14096
  • Loading branch information
volaya committed Jan 13, 2016
1 parent 7a87999 commit f8de083
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 @@ -82,7 +82,7 @@ def help(self):
if os.path.exists(helpfile):
return False, helpfile
else:
raise False
return False, None

def adapt_list_to_string(self, c_list):
a_list = c_list[1:]
Expand Down

0 comments on commit f8de083

Please sign in to comment.