diff options
author | Adrian Lane <adrian.lane@canonical.com> | 2020-04-05 21:48:33 -0700 |
---|---|---|
committer | Adrian Lane <adrian.lane@canonical.com> | 2020-04-05 21:48:33 -0700 |
commit | 0dd3565838fa0100512fae491930bc43143dab2d (patch) | |
tree | 3927b6069aeb34febf35487d9dd00ea8643897fe /bin | |
parent | 8818913be53e8e2d75364bfd1483e3ee95c7377a (diff) |
explicit syntax adds
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ipmi_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ipmi_test.py b/bin/ipmi_test.py index d8d02e8a..28224ee2 100755 --- a/bin/ipmi_test.py +++ b/bin/ipmi_test.py @@ -299,7 +299,7 @@ def init_logging(): parser.add_argument('-q', '--quiet', action='store_true', help='Suppress output.') args = parser.parse_args() - if (not args.quiet or args.debug): + if ((not args.quiet) or args.debug): logger = logging.getLogger() logger.setLevel(logging.DEBUG) if (not args.quiet): |