diff options
Diffstat (limited to 'scripts/oe-build-perf-report')
-rwxr-xr-x | scripts/oe-build-perf-report | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/oe-build-perf-report b/scripts/oe-build-perf-report index b3c769895e..af4f0469f6 100755 --- a/scripts/oe-build-perf-report +++ b/scripts/oe-build-perf-report | |||
@@ -427,8 +427,8 @@ def print_html_report(data, id_comp, buildstats): | |||
427 | 427 | ||
428 | # Compare buildstats | 428 | # Compare buildstats |
429 | bs_key = test + '.' + meas | 429 | bs_key = test + '.' + meas |
430 | rev = metadata['commit_num']['value'] | 430 | rev = str(metadata['commit_num']['value']) |
431 | comp_rev = metadata['commit_num']['value_old'] | 431 | comp_rev = str(metadata['commit_num']['value_old']) |
432 | if (rev in buildstats and bs_key in buildstats[rev] and | 432 | if (rev in buildstats and bs_key in buildstats[rev] and |
433 | comp_rev in buildstats and bs_key in buildstats[comp_rev]): | 433 | comp_rev in buildstats and bs_key in buildstats[comp_rev]): |
434 | new_meas['buildstats'] = BSSummary(buildstats[comp_rev][bs_key], | 434 | new_meas['buildstats'] = BSSummary(buildstats[comp_rev][bs_key], |