Skip to content

Commit 6ab265d

Browse files
author
Joerg Stadler
committed
fix raw streamline output, without outputroot
1 parent eacd567 commit 6ab265d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

nipype/interfaces/camino/convert.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,8 @@ def _get_actual_outputroot(self, outputroot):
463463
def _list_outputs(self):
464464
outputs = self.output_spec().get()
465465
outputs['proc'] = os.path.abspath(self._gen_outfilename())
466-
outputs['outputroot_files'] = self.outputroot_files
466+
if isdefined(self.inputs.outputroot):
467+
outputs['outputroot_files'] = self.outputroot_files
467468
return outputs
468469

469470
def _gen_outfilename(self):

0 commit comments

Comments
 (0)