diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-11 13:47:45 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-11 13:47:45 +0200 |
commit | a1d5955b84387a03501057bf66996ee6010bf4f7 (patch) | |
tree | 4f0cfd4d933835a950904b919b6dd2ddf1f9d39a | |
parent | b61e9535c38d0ade84a16f76be5051b0f676e312 (diff) | |
download | jenkins.debian.net-a1d5955b84387a03501057bf66996ee6010bf4f7.tar.xz |
reproducible live status: use identical column names for both tables
-rwxr-xr-x | bin/reproducible_html_live_status.py | 4 |
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' |