Browse Source

buildhistory-diff: honour report_all flag

Make sure that we're passing a bool value. Without this, buildhistory
shows all the output for all the keys/fields when it shouldn't be by
default.

Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Anuj Mittal 6 years ago
parent
commit
b30153a157
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/buildhistory-diff

+ 1 - 1
scripts/buildhistory-diff

@@ -38,7 +38,7 @@ def get_args_parser():
     parser.add_argument('-a', '--report-all',
                         action='store_true',
                         dest='report_all',
-                        default='False',
+                        default=False,
                         help="Report all changes, not just the default significant ones")
     parser.add_argument('-s', '---signatures',
                         action='store_true',