Skip to content

Commit d07aef9

Browse files
committedOct 5, 2016
[processing] added missing return statement in getParameterFromString
1 parent 257faf3 commit d07aef9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1495,6 +1495,7 @@ def getParameterFromString(s):
14951495
clazz = getattr(sys.modules[__name__], tokens[0])
14961496
param = clazz(*params)
14971497
param.isAdvanced = isAdvanced
1498+
return param
14981499
except:
14991500
return None
15001501
else: # try script syntax

0 commit comments

Comments
 (0)
Please sign in to comment.