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 59825e4 commit 39f1241Copy full SHA for 39f1241
nibabel/cmdline/utils.py
@@ -32,7 +32,7 @@ def verbose(thing, msg):
32
"""Print `s` if `thing` is less than the `verbose_level`
33
"""
34
# TODO: consider using nibabel's logger
35
- if thing <= int(verbose_level):
+ if thing <= verbose_level:
36
print(' ' * thing + msg)
37
38
0 commit comments