From ea4e95aaf16c4158cfac84510c380bdff3a8dc1c Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Wed, 26 Aug 2015 02:13:16 +0200 Subject: reproducible: only link to suites that are tested on armhf (and two whitespace changes in the same function) --- bin/reproducible_common.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 0fc45218..b6ba1675 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -271,11 +271,13 @@ def _gen_links(suite, arch): continue html += link[1].format(suite=suite, arch=arch) + '\n' for i in SUITES: # suite links - html += '
  • suite: ' + i + '
  • ' + if arch == 'armhf' and i != 'unstable': + continue + html += '
  • suite: ' + i + '
  • ' if arch == 'amd64': - html += '
  • armhf
  • ' + html += '
  • armhf
  • ' else: - html += '
  • amd64
  • ' + html += '
  • amd64
  • ' return html -- cgit v1.2.3-54-g00ecf