Skip to content

Commit ad75db2

Browse files
authored
Merge pull request #4 from pwighton/add_pet_freesurfer
PR FIX syntax:`os.join` --> `os.path.join`
2 parents e2a37fa + c8dea59 commit ad75db2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nipype/interfaces/freesurfer/petsurfer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ class MRTM(GLMFit):
471471

472472
def _list_outputs(self):
473473
outputs = self.output_spec().get()
474-
outputs['k2p'] = os.join(self.inputs.glm_dir, 'k2prime.dat')
474+
outputs['k2p'] = os.path.join(self.inputs.glm_dir, 'k2prime.dat')
475475
return outputs
476476

477477
class MRTM2InputSpec(GLMFitInputSpec):
@@ -576,4 +576,4 @@ def _list_outputs(self):
576576
else:
577577
ext = '.mgh'
578578
outputs['bp'] = os.path.join(self.inputs.glm_dir, 'bp', ext)
579-
return outputs
579+
return outputs

0 commit comments

Comments
 (0)