From 093285a1eb853d6a55cf062ba1e44c5eb1295a7e Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Wed, 11 Mar 2015 21:33:22 +0100 Subject: reproducible: fix status links to point to them in the right suite --- bin/reproducible_html_packages.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'bin/reproducible_html_packages.py') diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index 80e66ff3..67a0c7d2 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -88,15 +88,15 @@ def check_package_status(package, suite, nocheck=False): return (status, version, build_date) -def gen_status_link_icon(status, icon): +def gen_status_link_icon(status, icon, suite, arch): html = '' if status != 'untested': - html += tab*6 + '\n' + html += tab*6 + '\n' html += tab*9 + '{status}\n' if status != 'untested': html += tab*8 + '\n' - return html.format(status=status, icon=icon) + return html.format(status=status, icon=icon, suite=suite, arch=arch) def gen_extra_links(package, version, suite, arch): @@ -200,7 +200,7 @@ def gen_packages_html(packages, suite=None, arch=None, no_clean=False, nocheck=F links, default_view = gen_extra_links(pkg, version, suite, arch) suites_links = gen_suites_links(pkg, suite) status, icon = join_status_icon(status, pkg, version) - status = gen_status_link_icon(status, icon) + status = gen_status_link_icon(status, icon, suite, arch) html = html_package_page.substitute(package=pkg, status=status, -- cgit v1.2.3-54-g00ecf