diff options
author | Valerie R Young <spectranaut@riseup.net> | 2016-06-07 21:41:08 -0400 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-06-08 16:13:10 +0200 |
commit | 872ebbd711f3b8225b1c3798ce99f07ce784bf65 (patch) | |
tree | 4c5ae4bfc55f61ee16e6737075e6b62ed220a951 /bin/reproducible_html_live_status.py | |
parent | 1d2518fbda03f4117fb0344da3197b16f7e8574f (diff) | |
download | jenkins.debian.net-872ebbd711f3b8225b1c3798ce99f07ce784bf65.tar.xz |
reproducible debian: update urls to include tests.r-b.org/debian directory
Diffstat (limited to 'bin/reproducible_html_live_status.py')
-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 137312b3..7ffe5217 100755 --- a/bin/reproducible_html_live_status.py +++ b/bin/reproducible_html_live_status.py @@ -51,7 +51,7 @@ def generate_schedule(arch): html += '</code></td><td>'+convert_into_status_html(str(row[4]))+'</td><td>'+duration+'</td><td>' + avg_duration + '</td></tr>\n' html += '</table></p>\n' destfile = BASE + '/index_' + arch + '_scheduled.html' - desturl = REPRODUCIBLE_URL + '/index_' + arch + '_scheduled.html' + desturl = DEBIAN_URL + '/index_' + arch + '_scheduled.html' write_html_page(title=title, body=html, destfile=destfile, arch=arch, style_note=True, refresh_every=60) log.info("Page generated at " + desturl) @@ -121,7 +121,7 @@ def generate_oldies(arch): html += '</code></td><td>'+convert_into_status_html(str(row[3]))+'</td><td>' + row[4] + '</td></tr>\n' html += '</table></p>\n' destfile = BASE + '/index_' + arch + '_oldies.html' - desturl = REPRODUCIBLE_URL + '/index_' + arch + '_oldies.html' + desturl = DEBIAN_URL + '/index_' + arch + '_oldies.html' write_html_page(title=title, body=html, destfile=destfile, arch=arch, style_note=True, refresh_every=60) log.info("Page generated at " + desturl) |