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

This commit is contained in:
Bob Lantz
2014-11-12 15:17:17 -08:00
parent 377d1b1cd8
commit a64f8c28bd
+2
View File
@@ -534,6 +534,8 @@ class Node( object ):
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