summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_live_status.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-09-11 13:47:45 +0200
committerHolger Levsen <holger@layer-acht.org>2015-09-11 13:47:45 +0200
commita1d5955b84387a03501057bf66996ee6010bf4f7 (patch)
tree4f0cfd4d933835a950904b919b6dd2ddf1f9d39a /bin/reproducible_html_live_status.py
parentb61e9535c38d0ade84a16f76be5051b0f676e312 (diff)
downloadjenkins.debian.net-a1d5955b84387a03501057bf66996ee6010bf4f7.tar.xz
reproducible live status: use identical column names for both tables
Diffstat (limited to 'bin/reproducible_html_live_status.py')
-rwxr-xr-xbin/reproducible_html_live_status.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_live_status.py b/bin/reproducible_html_live_status.py
index ef1abe25..426ff810 100755
--- a/bin/reproducible_html_live_status.py
+++ b/bin/reproducible_html_live_status.py
@@ -25,7 +25,7 @@ def generate_schedule(arch):
html += generate_live_status_table(arch)
html += '<p><table class="scheduled">\n' + tab
html += '<tr><th>#</th><th>scheduled at</th><th>suite</th>'
- html += '<th>architecture</th><th>source package</th></tr>\n'
+ html += '<th>arch</th><th>source package</th></tr>\n'
for row in rows:
# 0: date_scheduled, 1: suite, 2: arch, 3: pkg name
pkg = row[3]
@@ -50,7 +50,7 @@ def generate_live_status_table(arch):
rows = query_db(query.format(arch=arch))
html += '<p><table class="scheduled">\n' + tab
html += '<tr><th>#</th><th>src pkg id</th><th>suite</th><th>arch</th>'
- html += '<th>name</th><th>version</th></th>'
+ html += '<th>source package</th><th>version</th></th>'
html += '<th>build started</th><th>previous build status</th>'
html += '<th>previous build duration</th><th>builder job</th>'
html += '</tr>\n'