Remove debugging message.

This commit is contained in:
Bob Lantz
2012-03-08 13:40:03 -08:00
parent 8a622c3a9a
commit 8688ca9249
+1 -1
View File
@@ -38,7 +38,7 @@ def customNode( constructors, argStr ):
( cname, constructors.keys() ) )
def custom( *args, **params ):
params.update( kwargs )
print 'CONSTRUCTOR', constructor, 'ARGS', args, 'PARAMS', params
# print 'CONSTRUCTOR', constructor, 'ARGS', args, 'PARAMS', params
return constructor( *args, **params )
return custom