Skip to content

Commit 60cc6ee

Browse files
committed
fix indentation errors
1 parent 8ec1560 commit 60cc6ee

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

nipype/interfaces/fsl/preprocess.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1592,12 +1592,11 @@ def _list_outputs(self):
15921592
def _gen_fname(self, name):
15931593
path, outname, ext = split_filename(self.inputs.out_file)
15941594

1595-
15961595
if name == 'original_segmentations':
1597-
fnames = glob.glob(op.abspath('%s_all_*_origsegs.nii.gz' % outname))
1596+
fnames = glob.glob(op.abspath('%s_all_*_origsegs.nii.gz' % outname))
15981597
return op.abspath(fnames[0])
15991598
if name == 'segmentation_file':
1600-
fnames = glob.glob(op.abspath('%s_all_*_firstseg.nii.gz' % outname))
1599+
fnames = glob.glob(op.abspath('%s_all_*_firstseg.nii.gz' % outname))
16011600
return op.abspath(fnames[0])
16021601

16031602
return None

0 commit comments

Comments
 (0)