Skip to content

Commit 5ad3eaf

Browse files
committed
Clearing out some debugging print code
1 parent 9d33767 commit 5ad3eaf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

nipype/utils/misc.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,8 @@ def create_function_from_source(function_source, imports=None):
7676
])
7777
raise RuntimeError(msg)
7878
ns_funcs = list(set(ns) - set(import_keys + ['__builtins__']))
79-
assert len(ns_funcs) == 1, ns_funcs
79+
assert len(ns_funcs) == 1, "Function or inputs are ill-defined"
8080
funcname = ns_funcs[0]
81-
print "*****", funcname
8281
func = ns[funcname]
8382
return func
8483

0 commit comments

Comments
 (0)