Skip to content

Commit 29f26bd

Browse files
committed
fix: job submission should use info['node'] to get node
1 parent e6c6bb6 commit 29f26bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/pipeline/plugins/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def create_pyscript(node, updatehash=False, store_exception=True):
148148
traceback=traceback))
149149
else:
150150
from nipype.pipeline.plugins.base import report_crash
151-
report_crash(node, traceback, gethostname())
151+
report_crash(info['node'], traceback, gethostname())
152152
raise Exception(e)
153153
"""
154154
cmdstr = cmdstr % (pkl_file, batch_dir, node.config, suffix)

0 commit comments

Comments
 (0)