Skip to content

Commit be18a5e

Browse files
committed
[processing] fix help method in GeoAlgorithm class
1 parent 4fa3390 commit be18a5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/plugins/processing/core/GeoAlgorithm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def __init__(self):
7373
self.showInModeler = True
7474
#if true, will show only loaded layers in parameters dialog.
7575
#Also, if True, the algorithm does not run on the modeler
76-
#or batch ptocessing interface
76+
#or batch ptocessing interface
7777
self.allowOnlyOpenedLayers = False
7878

7979
# False if it should not be run a a batch process
@@ -116,7 +116,7 @@ def help(self):
116116
117117
Returns None if there is no help file available.
118118
"""
119-
return None
119+
return False, None
120120

121121
def processAlgorithm(self):
122122
"""Here goes the algorithm itself.

0 commit comments

Comments
 (0)