diff options
author | Valerie R Young <spectranaut@riseup.net> | 2016-06-09 13:00:09 -0400 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-06-09 19:01:49 +0200 |
commit | dbb4f0ff4994030828ca7ee901ec80e9a2ddce26 (patch) | |
tree | 76196e536ec4a63faf61396714451d5576d97e71 /bin | |
parent | 3beb05c0ed8eec654a7591fd47c94949bcc3c8f7 (diff) | |
download | jenkins.debian.net-dbb4f0ff4994030828ca7ee901ec80e9a2ddce26.tar.xz |
debian reproducible: fix links to packages in 'testing' and 'unstable' on package pages
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_packages.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index caa32413..840bc17a 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -188,7 +188,7 @@ def gen_suites_links(package, current_suite, current_arch): if ( s == current_suite and a == current_arch ): html += (tab*2 + ' {}').format(version) else: - html += (tab*2 + ' <a href="/debian/{}/{}/{}/{}.html" target="_parent"' + \ + html += (tab*2 + ' <a href="{}/{}/{}/{}.html" target="_parent"' + \ ' title="{}: {}{}">{}</a>').format(RB_PKG_URI, s, a, package.name, spokenstatus, version, build_date, version) html += ' in <a href="/debian/{}/{}/" target="_parent">{}</a>\n'.format(s, a, s) |