Skip to content

Commit 27f1eae

Browse files
mnoergaardmgxd
andauthored
FIX: update error_file outputs to f string
Co-authored-by: Mathias Goncalves <[email protected]>
1 parent 8c649fe commit 27f1eae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/freesurfer/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ def _list_outputs(self):
519519
outputs["dof_file"] = os.path.join(glmdir, "dof.dat")
520520
# Assign the conditional outputs
521521
if self.inputs.save_residual:
522-
outputs["error_file"] = os.path.join(glmdir, "eres.{ext}")
522+
outputs["error_file"] = os.path.join(glmdir, f"eres.{ext}")
523523
if self.inputs.save_estimate:
524524
outputs["estimate_file"] = os.path.join(glmdir, "yhat.{ext}")
525525
if any((self.inputs.mrtm1, self.inputs.mrtm2, self.inputs.logan)):

0 commit comments

Comments
 (0)