Skip to content

Commit e5fc774

Browse files
committed
fix single line case
1 parent 5526eed commit e5fc774

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/afni/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ def _list_outputs(self):
738738
if len(sout) > 1:
739739
outputs['cm'] = [tuple(s) for s in sout]
740740
else:
741-
outputs['cm'] = tuple(sout)
741+
outputs['cm'] = tuple(sout[0])
742742
return outputs
743743

744744

0 commit comments

Comments
 (0)