Skip to content

Commit fd463ff

Browse files
committed
apparently the variable l is a really big chafe
1 parent 0cc0cd4 commit fd463ff

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

nibabel/cmdline/utils.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ def _err(msg=None):
3030
return '!' + msg
3131

3232

33-
def verbose(l, msg):
34-
"""Print `s` if `l` is less than the `verbose_level`
33+
def verbose(thing, msg):
34+
"""Print `s` if `thing` is less than the `verbose_level`
3535
"""
3636
# TODO: consider using nibabel's logger
37-
if l <= int(verbose_level):
38-
print("%s%s" % (' ' * l, msg))
37+
if thing <= int(verbose_level):
38+
print("%s%s" % (' ' * thing, msg))
3939

4040

4141
def table2string(table, out=None):

0 commit comments

Comments
 (0)