From: Markus Lehtonen Date: Fri, 15 Sep 2017 12:54:54 +0000 (+0300) Subject: scripts/oe-build-perf-report: provide valid title in the html report X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~19964 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46312fde635a717e41d12e7ef01940838316ae17;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git scripts/oe-build-perf-report: provide valid title in the html report Signed-off-by: Markus Lehtonen Signed-off-by: Ross Burton --- diff --git a/scripts/oe-build-perf-report b/scripts/oe-build-perf-report index 4e067caba0b..8d730cd20a0 100755 --- a/scripts/oe-build-perf-report +++ b/scripts/oe-build-perf-report @@ -396,7 +396,9 @@ def print_html_report(data, id_comp): 'max': get_data_item(data[-1][0], 'layers.meta.commit_count')} } - print(html.template.render(metadata=metadata, test_data=tests, chart_opts=chart_opts)) + print(html.template.render(title="Build Perf Test Report", + metadata=metadata, test_data=tests, + chart_opts=chart_opts)) def dump_buildstats(repo, outdir, notes_ref, revs):