From: Anuj Mittal Date: Fri, 23 Feb 2018 10:55:59 +0000 (+0800) Subject: buildhistory-diff: honour report_all flag X-Git-Tag: uninative-1.8~249 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=b30153a15715a83c0f9a7d7d1883a15404992a19;p=openembedded-core.git 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 --- 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',