Skip to content

Commit 62fea30

Browse files
committed
Added spaces inside brackets for --initial-moving-transform option in cmdline
1 parent 1dea8c2 commit 62fea30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/ants/registration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ def _get_initial_transform_filenames(self):
878878
raise Exception(("ERROR: The useInverse list must have the same number "
879879
"of entries as the transformsFileName list."))
880880
else:
881-
retval.append("[%s, 0] " % self.inputs.initial_moving_transform[ii])
881+
retval.append("[ %s, 0 ] " % self.inputs.initial_moving_transform[ii])
882882
return " ".join(retval)
883883

884884
def _format_arg(self, opt, spec, val):

0 commit comments

Comments
 (0)