bugfix: method hasParam did not return any value

This commit is contained in:
Sebastian Wehling-Benatelli 2015-05-20 10:23:47 +02:00
parent 82540c50af
commit 5f8b6de1ec

View File

@ -135,9 +135,9 @@ class AutoPickParameter(object):
try:
for param in args:
test(param)
return test(param)
except TypeError:
test(args)
return test(args)
def getParam(self, *args):
try: