Skip to content

Commit 8ed12f6

Browse files
committed
fix overcorrection
1 parent 799dfab commit 8ed12f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nipype/pipeline/plugins/multiproc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ def _submit_job(self, node, updatehash=False):
139139
self._taskid += 1
140140

141141
# Don't allow streaming outputs
142-
if getattr(node, 'terminal_output', '') == 'stream':
143-
node.terminal_output = 'allatonce'
142+
if getattr(node.interface, 'terminal_output', '') == 'stream':
143+
node.interface.terminal_output = 'allatonce'
144144

145145
self._task_obj[self._taskid] = self.pool.apply_async(
146146
run_node, (node, updatehash, self._taskid),

0 commit comments

Comments
 (0)