diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index aa968d9b..cea16cfa 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -60,7 +60,7 @@ parser = argparse.ArgumentParser() group = parser.add_mutually_exclusive_group() group.add_argument("-d", "--debug", action="store_true") group.add_argument("-q", "--quiet", action="store_true") -args = parser.parse_args() +args, unknown_args = parser.parse_known_args() log_level = logging.INFO if args.debug or DEBUG: log_level = logging.DEBUG |