diff --git a/CHANGES b/CHANGES index aff5ee4351..f72ca3a3bb 100644 --- a/CHANGES +++ b/CHANGES @@ -49,6 +49,7 @@ Next release * ENH: Usability improvements in cluster environments (https://github.com/nipy/nipype/pull/1025) * ENH: ANTs JointFusion() (https://github.com/nipy/nipype/pull/1042) * ENH: Added csvReader() utility (https://github.com/nipy/nipype/pull/1044) +* FIX: typo in nipype.interfaces.freesurfer.utils.py Tkregister2 (https://github.com/nipy/nipype/pull/1083) Release 0.10.0 (October 10, 2014) ============ diff --git a/nipype/interfaces/freesurfer/utils.py b/nipype/interfaces/freesurfer/utils.py index 91cfb84d55..716c78e5ee 100644 --- a/nipype/interfaces/freesurfer/utils.py +++ b/nipype/interfaces/freesurfer/utils.py @@ -1268,7 +1268,7 @@ def _list_outputs(self): outputs = self._outputs().get() outputs['reg_file'] = os.path.abspath(self.inputs.reg_file) if isdefined(self.inputs.fsl_out): - outputs['fsl_file'] = op.abspath(self.inputs.fsl_out) + outputs['fsl_file'] = os.path.abspath(self.inputs.fsl_out) return outputs def _gen_outfilename(self):