File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 11Next release
22============
3+ * FIX: In the FSLXcommand _list_outputs function fixed for loop range (https://github.com/nipy/nipype/pull/1071)
34* ENH: Dropped support for now 7 years old Python 2.6 (https://github.com/nipy/nipype/pull/1069)
45* FIX: terminal_output is not mandatory anymore (https://github.com/nipy/nipype/pull/1070)
56* 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):
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'
You can’t perform that action at this time.
0 commit comments