Fix #12850 - Add missing args='auto' keyword'

This commit is contained in:
Nathan Woodrow 2015-06-01 13:56:33 +10:00
parent 15ba006408
commit 4b6ad0c237

View File

@ -56,7 +56,7 @@ last args. Use args=-1 to pass a list of values as arguments
from qgis.core import *
from qgis.gui import *
@qgsfunction(group='Custom')
@qgsfunction(args='auto', group='Custom')
def func(value1, feature, parent):
return value1
"""