[processing][API] rename alghelp to algorithmHelp

This commit is contained in:
Alexander Bruy 2017-03-22 15:25:12 +02:00
parent 060a57f12b
commit 3e4fb56eea
2 changed files with 2 additions and 2 deletions

View File

@ -251,7 +251,7 @@ class Processing(object):
# fix_print_with_import
print('Error: Wrong number of parameters')
QgsMessageLog.logMessage(Processing.tr('Error: Wrong number of parameters'), Processing.tr("Processing"))
processing.alghelp(algOrName)
processing.algorithmHelp(algOrName)
return
i = 0
for param in alg.parameters:

View File

@ -68,7 +68,7 @@ def algoptions(name):
print('Algorithm not found')
def alghelp(name):
def algorithmHelp(name):
alg = Processing.getAlgorithm(name)
if alg is not None:
alg = alg.getCopy()