diff options
author | Anuj Mittal <anuj.mittal@intel.com> | 2018-02-23 18:55:59 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-02-24 10:33:12 +0000 |
commit | b30153a15715a83c0f9a7d7d1883a15404992a19 (patch) | |
tree | 9df3765cc95f5aad2cd6d2d17518a0cfa5f4e51f /scripts | |
parent | 59285b324f6d9ed270b0bef209ef5da22a620a83 (diff) | |
download | openembedded-core-b30153a15715a83c0f9a7d7d1883a15404992a19.tar.gz openembedded-core-b30153a15715a83c0f9a7d7d1883a15404992a19.tar.bz2 openembedded-core-b30153a15715a83c0f9a7d7d1883a15404992a19.zip |
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>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/buildhistory-diff | 2 |
1 files changed, 1 insertions, 1 deletions
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', |