Skip to content

Commit

Permalink
[processing][API] rename algoptions() to algorithmOptions()
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Mar 22, 2017
1 parent 3e4fb56 commit acd3744
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/tools/general.py
Expand Up @@ -52,7 +52,7 @@ def alglist(text=None):
print(s)


def algoptions(name):
def algorithmOptions(name):
alg = Processing.getAlgorithm(name)
if alg is not None:
s = ''
Expand All @@ -73,7 +73,7 @@ def algorithmHelp(name):
if alg is not None:
alg = alg.getCopy()
print(str(alg))
algoptions(name)
algorithmOptions(name)
else:
print('Algorithm not found')

Expand Down

0 comments on commit acd3744

Please sign in to comment.