Skip to content

Commit

Permalink
[processing] added missing return statement in getParameterFromString
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Oct 5, 2016
1 parent 257faf3 commit d07aef9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions python/plugins/processing/core/parameters.py
Expand Up @@ -1495,6 +1495,7 @@ def getParameterFromString(s):
clazz = getattr(sys.modules[__name__], tokens[0])
param = clazz(*params)
param.isAdvanced = isAdvanced
return param
except:
return None
else: # try script syntax
Expand Down

0 comments on commit d07aef9

Please sign in to comment.