summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_notes.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-03-01 16:27:22 +0100
committerMattia Rizzolo <mattia@mapreri.org>2015-03-01 16:27:22 +0100
commit45caedc02b44161c9ac4f17e7929d721b2bcf28d (patch)
treeffc16331131d1fdb20325124fa149c208bb2b9c3 /bin/reproducible_html_notes.py
parent6fad60fcefd31254120c26abd0bf8ed825599edb (diff)
downloadjenkins.debian.net-45caedc02b44161c9ac4f17e7929d721b2bcf28d.tar.xz
reproducible: html_notes: fix multiarch url
Diffstat (limited to 'bin/reproducible_html_notes.py')
-rwxr-xr-xbin/reproducible_html_notes.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py
index 456fc4f9..bf58425b 100755
--- a/bin/reproducible_html_notes.py
+++ b/bin/reproducible_html_notes.py
@@ -374,8 +374,8 @@ def index_notes(notes, bugs):
html += tab + str(len(pkgs)) + ' ' + status + ' packages:\n'
html += tab + '<code>\n'
for pkg in pkgs:
- # FIXME we currently consider notes only for sid
- url = RB_PKG_URI + '/sid/' + pkg + '.html'
+ # FIXME we currently consider notes only for sid/amd64
+ url = RB_PKG_URI + '/sid/amd64/' + pkg + '.html'
html += tab*2 + '<a href="' + url + '" class="noted">' + pkg
html += '</a>' + get_trailing_icon(pkg, bugs) + '\n'
html += tab + '</code>\n'
@@ -412,8 +412,8 @@ def index_no_notes(notes, bugs):
html += tab + str(len(pkgs)) + ' ' + status + ' packages:\n'
html += tab + '<code>\n'
for pkg in pkgs:
- # FIXME we currently consider notes only for sid
- url = RB_PKG_URI + '/sid/' + pkg + '.html'
+ # FIXME we currently consider notes only for sid/amd64
+ url = RB_PKG_URI + '/sid/amd64/' + pkg + '.html'
html += tab*2 + '<a href="' + url + '" class="package">' + pkg
html += '</a>' + get_trailing_icon(pkg, bugs) + '\n'
html += tab + '</code>\n'