Skip to content

Commit f8de083

Browse files
committed
[Processing] [OTB] fixed wrong command when alg help is not found
fixes #14096
1 parent 7a87999 commit f8de083

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/algs/otb/OTBAlgorithm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def help(self):
8282
if os.path.exists(helpfile):
8383
return False, helpfile
8484
else:
85-
raise False
85+
return False, None
8686

8787
def adapt_list_to_string(self, c_list):
8888
a_list = c_list[1:]

0 commit comments

Comments
 (0)