Skip to content

Commit acd3744

Browse files
committedMar 22, 2017
[processing][API] rename algoptions() to algorithmOptions()
1 parent 3e4fb56 commit acd3744

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎python/plugins/processing/tools/general.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def alglist(text=None):
5252
print(s)
5353

5454

55-
def algoptions(name):
55+
def algorithmOptions(name):
5656
alg = Processing.getAlgorithm(name)
5757
if alg is not None:
5858
s = ''
@@ -73,7 +73,7 @@ def algorithmHelp(name):
7373
if alg is not None:
7474
alg = alg.getCopy()
7575
print(str(alg))
76-
algoptions(name)
76+
algorithmOptions(name)
7777
else:
7878
print('Algorithm not found')
7979

0 commit comments

Comments
 (0)
Please sign in to comment.