Skip to content

Commit 3e4fb56

Browse files
committedMar 22, 2017
[processing][API] rename alghelp to algorithmHelp
1 parent 060a57f commit 3e4fb56

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎python/plugins/processing/core/Processing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ def runAlgorithm(algOrName, onFinish, *args, **kwargs):
251251
# fix_print_with_import
252252
print('Error: Wrong number of parameters')
253253
QgsMessageLog.logMessage(Processing.tr('Error: Wrong number of parameters'), Processing.tr("Processing"))
254-
processing.alghelp(algOrName)
254+
processing.algorithmHelp(algOrName)
255255
return
256256
i = 0
257257
for param in alg.parameters:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def algoptions(name):
6868
print('Algorithm not found')
6969

7070

71-
def alghelp(name):
71+
def algorithmHelp(name):
7272
alg = Processing.getAlgorithm(name)
7373
if alg is not None:
7474
alg = alg.getCopy()

0 commit comments

Comments
 (0)
Please sign in to comment.