Skip to content

Commit 075bd84

Browse files
mattfeldmick-d
authored andcommitted
updated CHANGES and add space to dti.py
1 parent 87e5e84 commit 075bd84

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Next release
22
============
3+
<<<<<<< HEAD
34

45
* FIX: Enable absolute path definitions in DCMStack (https://github.com/nipy/nipype/pull/1089,
56
replaced by https://github.com/nipy/nipype/pull/1093)
@@ -12,6 +13,7 @@ Next release
1213
* FIX: FUGUE is now properly listing outputs. (https://github.com/nipy/nipype/pull/978)
1314
* ENH: Improved FieldMap-Based (FMB) workflow for correction of susceptibility distortions in EPI seqs.
1415
(https://github.com/nipy/nipype/pull/1019)
16+
* FIX: In the FSLXcommand _list_outputs function fixed for loop range (https://github.com/nipy/nipype/pull/1071)
1517
* ENH: Dropped support for now 7 years old Python 2.6 (https://github.com/nipy/nipype/pull/1069)
1618
* FIX: terminal_output is not mandatory anymore (https://github.com/nipy/nipype/pull/1070)
1719
* ENH: Added "nipype_cmd" tool for running interfaces from the command line (https://github.com/nipy/nipype/pull/795)

nipype/interfaces/fsl/dti.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def _list_outputs(self):
222222
for k in multi_out:
223223
outputs[k] = []
224224

225-
for i in xrange(1, self.inputs.n_fibres + 1):
225+
for i in xrange(1, self.inputs.n_fibres + 1):
226226
outputs['fsamples'].append(self._gen_fname('f%dsamples' % i,
227227
cwd=out_dir))
228228
outputs['mean_fsamples'].append(self._gen_fname(('mean_f%d'

0 commit comments

Comments
 (0)