diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2017-04-03 18:58:35 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-04-05 12:36:45 +0100 |
commit | 0a05ccfeba2f185ef9ea78a23bc376d4b97ec547 (patch) | |
tree | c44694210cf634e7c7340fb1a33fb1cb397283c0 /scripts | |
parent | 79b90ae02257002ea831a48f6798794b7711c1f8 (diff) | |
download | openembedded-core-0a05ccfeba2f185ef9ea78a23bc376d4b97ec547.tar.gz openembedded-core-0a05ccfeba2f185ef9ea78a23bc376d4b97ec547.tar.bz2 openembedded-core-0a05ccfeba2f185ef9ea78a23bc376d4b97ec547.zip |
scripts/oe-build-perf-report: fix typo
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/oe-build-perf-report | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-build-perf-report b/scripts/oe-build-perf-report index ca9cf1d974..6f2db49d5c 100755 --- a/scripts/oe-build-perf-report +++ b/scripts/oe-build-perf-report @@ -234,7 +234,7 @@ def print_diff_report(metadata_l, data_l, metadata_r, data_r): meta_diff = metadata_diff(metadata_l, metadata_r) rows = [] row_fmt = ['{:{wid}} ', '{:<{wid}} ', '{:<{wid}}'] - rows = [['', 'CURRENT COMMIT', 'OOMPARING WITH']] + rows = [['', 'CURRENT COMMIT', 'COMPARING WITH']] for key, val in meta_diff.items(): # Shorten commit hashes if key == 'commit': |