Skip to content

Commit c997d41

Browse files
committed
Merge branch 'maint/0.3' of github.com:nipy/nipype into maint/0.3
* 'maint/0.3' of github.com:nipy/nipype: BF: SimpleThreshold should return absolute paths
2 parents 8f64fff + 76dd888 commit c997d41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/algorithms/misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def _list_outputs(self):
113113
outputs["thresholded_volumes"] = []
114114
for fname in self.inputs.volumes:
115115
_, base, _ = split_filename(fname)
116-
outputs["thresholded_volumes"].append(base + '_thresholded.nii')
116+
outputs["thresholded_volumes"].append(os.path.abspath(base + '_thresholded.nii'))
117117
return outputs
118118

119119
class ModifyAffineInputSpec(TraitedSpec):

0 commit comments

Comments
 (0)