From b30153a15715a83c0f9a7d7d1883a15404992a19 Mon Sep 17 00:00:00 2001 From: Anuj Mittal Date: Fri, 23 Feb 2018 18:55:59 +0800 Subject: 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 Signed-off-by: Richard Purdie --- scripts/buildhistory-diff | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/buildhistory-diff b/scripts/buildhistory-diff index 27974072fc..70805b0678 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', -- cgit 1.2.3-korg