Skip to content

Commit

Permalink
[processing] fix help method in GeoAlgorithm class
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Apr 23, 2014
1 parent 4fa3390 commit be18a5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/core/GeoAlgorithm.py
Expand Up @@ -73,7 +73,7 @@ def __init__(self):
self.showInModeler = True
#if true, will show only loaded layers in parameters dialog.
#Also, if True, the algorithm does not run on the modeler
#or batch ptocessing interface
#or batch ptocessing interface
self.allowOnlyOpenedLayers = False

# False if it should not be run a a batch process
Expand Down Expand Up @@ -116,7 +116,7 @@ def help(self):
Returns None if there is no help file available.
"""
return None
return False, None

def processAlgorithm(self):
"""Here goes the algorithm itself.
Expand Down

0 comments on commit be18a5e

Please sign in to comment.