We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cc0cd4 commit fd463ffCopy full SHA for fd463ff
nibabel/cmdline/utils.py
@@ -30,12 +30,12 @@ def _err(msg=None):
30
return '!' + msg
31
32
33
-def verbose(l, msg):
34
- """Print `s` if `l` is less than the `verbose_level`
+def verbose(thing, msg):
+ """Print `s` if `thing` is less than the `verbose_level`
35
"""
36
# TODO: consider using nibabel's logger
37
- if l <= int(verbose_level):
38
- print("%s%s" % (' ' * l, msg))
+ if thing <= int(verbose_level):
+ print("%s%s" % (' ' * thing, msg))
39
40
41
def table2string(table, out=None):
0 commit comments