[OE-core] [PATCH] buildhistory-diff: honour report_all flag

Anuj Mittal anuj.mittal at intel.com
Fri Feb 23 10:55:59 UTC 2018


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 at intel.com>
---
 scripts/buildhistory-diff | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/buildhistory-diff b/scripts/buildhistory-diff
index 2797407..70805b0 100755
--- a/scripts/buildhistory-diff
+++ b/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',
-- 
2.7.4




More information about the Openembedded-core mailing list