summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_packages.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/reproducible_html_packages.py')
-rwxr-xr-xbin/reproducible_html_packages.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py
index 7fb61cd1..c12a2531 100755
--- a/bin/reproducible_html_packages.py
+++ b/bin/reproducible_html_packages.py
@@ -164,9 +164,11 @@ def gen_extra_links(package, version, suite, arch, status):
return (links, default_view)
-def gen_suites_links(package):
+def gen_suites_links(package, current_arch):
html = '<ul>\n'
for a in ARCHS:
+ if current_arch == 'amd64' and a != 'amd64':
+ continue
html += tab + '<li>{}\n'.format(a)
html += tab + '<ul class="children">\n'
for s in SUITES:
@@ -214,7 +216,7 @@ def gen_packages_html(packages, no_clean=False):
links, default_view = gen_extra_links(
pkg, version, suite, arch, status)
- suites_links = gen_suites_links(package)
+ suites_links = gen_suites_links(package, arch)
status, icon = join_status_icon(status, pkg, version)
status = gen_status_link_icon(status, icon, suite, arch)