Skip to content

Commit 8dc18c5

Browse files
committed
fix: Unrelated bbregister bug
1 parent b2da74c commit 8dc18c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/freesurfer/preprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1975,7 +1975,7 @@ def _list_outputs(self):
19751975
outputs["out_fsl_file"] = op.abspath(_in.out_fsl_file)
19761976

19771977
if isdefined(_in.init_cost_file):
1978-
if isinstance(_in.out_fsl_file, bool):
1978+
if isinstance(_in.init_cost_file, bool):
19791979
outputs["init_cost_file"] = outputs["out_reg_file"] + ".initcost"
19801980
else:
19811981
outputs["init_cost_file"] = op.abspath(_in.init_cost_file)

0 commit comments

Comments
 (0)