diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-12 01:27:20 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-12 01:27:20 +0100 |
commit | 987a6acc6d03ad2875fd770824b76d38692d32d9 (patch) | |
tree | c09d95a17dd33c68019ba98fc2573d2014d1005a | |
parent | 896914d6fe9d5163ec43541e610e9ad4a9a884fb (diff) | |
download | jenkins.debian.net-987a6acc6d03ad2875fd770824b76d38692d32d9.tar.xz |
reproducible: fix links
-rwxr-xr-x | bin/reproducible_html_indexes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_indexes.py b/bin/reproducible_html_indexes.py index c361f27c..903f5f18 100755 --- a/bin/reproducible_html_indexes.py +++ b/bin/reproducible_html_indexes.py @@ -301,7 +301,7 @@ def build_page_section(page, section, suite, arch): for row in rows: if page == 'scheduled': pkg = row[4] - url = RB_PKG_URI + '/' + row[1] + '/' + row[2] + '/' + pkg + '.html' + url = RB_PKG_URI + '/' + row[2] + '/' + row[3] + '/' + pkg + '.html' html += tab + '<tr><td>' + str(row[0]) + '</td><td>' + row[1] + '</td><td>' + row[2] + '</td><td>' + row[3] + '</td><td><code>' else: pkg = row[0] |