File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 1
1
Next release
2
2
============
3
+ <<<<<<< HEAD
3
4
4
5
* FIX: Enable absolute path definitions in DCMStack (https://github.com/nipy/nipype/pull/1089,
5
6
replaced by https://github.com/nipy/nipype/pull/1093)
@@ -12,6 +13,7 @@ Next release
12
13
* FIX: FUGUE is now properly listing outputs. (https://github.com/nipy/nipype/pull/978)
13
14
* ENH: Improved FieldMap-Based (FMB) workflow for correction of susceptibility distortions in EPI seqs.
14
15
(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)
15
17
* ENH: Dropped support for now 7 years old Python 2.6 (https://github.com/nipy/nipype/pull/1069)
16
18
* FIX: terminal_output is not mandatory anymore (https://github.com/nipy/nipype/pull/1070)
17
19
* ENH: Added "nipype_cmd" tool for running interfaces from the command line (https://github.com/nipy/nipype/pull/795)
Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ def _list_outputs(self):
222
222
for k in multi_out :
223
223
outputs [k ] = []
224
224
225
- for i in xrange (1 , self .inputs .n_fibres + 1 ):
225
+ for i in xrange (1 , self .inputs .n_fibres + 1 ):
226
226
outputs ['fsamples' ].append (self ._gen_fname ('f%dsamples' % i ,
227
227
cwd = out_dir ))
228
228
outputs ['mean_fsamples' ].append (self ._gen_fname (('mean_f%d'
You can’t perform that action at this time.
0 commit comments