Skip to content

Commit 2c0e384

Browse files
author
Avneet Kaur
committed
os.join --> os.path.join
1 parent 03656b3 commit 2c0e384

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
@@ -520,7 +520,7 @@ def _list_outputs(self):
520520
ext = '.nii'
521521
else:
522522
ext = '.mgh'
523-
outputs['bp'] = os.join(self.inputs.glm_dir, 'bp', ext)
523+
outputs['bp'] = os.path.join(self.inputs.glm_dir, 'bp', ext)
524524
return outputs
525525

526526
class LoganRefInputSpec(GLMFitInputSpec):
@@ -559,5 +559,5 @@ def _list_outputs(self):
559559
ext = '.nii'
560560
else:
561561
ext = '.mgh'
562-
outputs['bp'] = os.join(self.inputs.glm_dir, 'bp', ext)
562+
outputs['bp'] = os.path.join(self.inputs.glm_dir, 'bp', ext)
563563
return outputs

0 commit comments

Comments
 (0)