Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
manuegrx authored and effigies committed Jul 5, 2023
1 parent 530a97d commit 1467f1c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nipype/interfaces/spm/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,17 +349,17 @@ def _list_outputs(self):

if contrast:
outputs["con_images"] = [
(os.path.join(pth, cont) for cont in contrast if 'con' in cont)
os.path.join(pth, cont) for cont in contrast if 'con' in cont
]
outputs["ess_images"] = [
(os.path.join(pth, cont) for cont in contrast if 'ess' in cont)
os.path.join(pth, cont) for cont in contrast if 'ess' in cont
]
if contrast_spm:
outputs["spmT_images"] = [
(os.path.join(pth, cont) for cont in contrast_spm if 'spmT' in cont)
os.path.join(pth, cont) for cont in contrast_spm if 'spmT' in cont
]
outputs["spmF_images"] = [
(os.path.join(pth, cont) for cont in contrast_spm if 'spmF' in cont)
os.path.join(pth, cont) for cont in contrast_spm if 'spmF' in cont
]

outputs["mask_image"] = os.path.join(pth, f"mask.{outtype}")
Expand Down

0 comments on commit 1467f1c

Please sign in to comment.