Skip to content

Commit 9e763ba

Browse files
committed
tab/space fix
1 parent a0d48fd commit 9e763ba

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

nipype/utils/filemanip.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -301,17 +301,17 @@ def _generate_cifs_table():
301301
cifs_paths = []
302302

303303
try:
304-
for path_and_fstype in mount_info:
305-
# need to check for tables that have only path and no fstype
306-
if len(path_and_fstype) == 2:
307-
# if this entry is cifs, add it to list
308-
if path_and_fstype[1] == 'cifs':
309-
cifs_paths.append(path_and_fstype[0])
310-
else:
311-
fmlogger.debug('mount file system types not described by fstype')
304+
for path_and_fstype in mount_info:
305+
# need to check for tables that have only path and no fstype
306+
if len(path_and_fstype) == 2:
307+
# if this entry is cifs, add it to list
308+
if path_and_fstype[1] == 'cifs':
309+
cifs_paths.append(path_and_fstype[0])
310+
else:
311+
fmlogger.debug('mount file system types not described by fstype')
312312
except:
313-
fmlogger.debug('mount file system type check for CIFS error')
314-
return []
313+
fmlogger.debug('mount file system type check for CIFS error')
314+
return []
315315
return [
316316
mount for mount in mount_info
317317
if any(mount[0].startswith(path) for path in cifs_paths)

0 commit comments

Comments
 (0)