Skip to content
Snippets Groups Projects
Commit a64f8c28 authored by Bob Lantz's avatar Bob Lantz
Browse files

Don't blow away parameters that aren't specified in node.config()

parent 377d1b1c
No related branches found
No related tags found
No related merge requests found
......@@ -534,6 +534,8 @@ def setParam( self, results, method, **param ):
param: arg=value (ignore if value=None)
value may also be list or dict"""
name, value = param.items()[ 0 ]
if value is None:
return
f = getattr( self, method, None )
if not f:
return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment