aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Monteith <stuart.monteith@linaro.org>2018-10-30 14:29:31 +0000
committerStuart Monteith <stuart.monteith@linaro.org>2018-10-30 14:29:31 +0000
commit025afa0ceffaeb30f93c8da0c0de671ed23e9545 (patch)
treed9b53e3d5bd4fb956a364d9fd1f4e52853bbd0a6
parent7f304958933fadaa9d0ff51a55d0c009d0bf342c (diff)
Fix type in make-summary-pageHEADmaster
-rwxr-xr-xmake-summary-page.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/make-summary-page.py b/make-summary-page.py
index dd93b60..a1d4679 100755
--- a/make-summary-page.py
+++ b/make-summary-page.py
@@ -50,7 +50,7 @@ def add_latest_results(body):
human_readable_date = result_date.strftime("%a, %d %b %Y")
body <= H2("Test Result Summary for {}".format(human_readable_date))
table = TABLE(border=1)
- table <= TR(TH(TH('Build Type') + TH('JTREG report') + TH('Passed') + TH('Failed') + TH('Error') + TH('Not run') + TH('Recent Results'))
+ table <= TR(TH('Build Type') + TH('JTREG report') + TH('Passed') + TH('Failed') + TH('Error') + TH('Not run') + TH('Recent Results'))
for build_config in sorted(os.listdir(report_dir)):
if "." in build_config:
continue