summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorReiner Herrmann <reiner@reiner-h.de>2016-05-21 19:00:11 +0200
committerHolger Levsen <holger@layer-acht.org>2016-05-21 19:09:12 +0200
commit73f504b99c58acf52a2ad4c892eda71ea2e7ae1d (patch)
tree773780556b97e78f1da103af1eee284ce6617b20 /bin
parent174376fd678fff68229c9802f98fb9f346f2af63 (diff)
downloadjenkins.debian.net-73f504b99c58acf52a2ad4c892eda71ea2e7ae1d.tar.xz
reproducible debian: add more spacing between archs/suites to make it clearer they are separate links
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py
index ac941bb6..6b200754 100755
--- a/bin/reproducible_common.py
+++ b/bin/reproducible_common.py
@@ -330,14 +330,14 @@ def _gen_pkg_sets_link(suite, arch):
def _gen_arch_links(suite, arch):
html = '<li>'
for a in ARCHS:
- html += ' <a href="/' + suite + '/index_suite_' + a + '_stats.html\">' + a + '</a>'
+ html += ' <a href="/' + suite + '/index_suite_' + a + '_stats.html\">' + a + '</a>&nbsp;&nbsp;'
html += '</li>'
return html
def _gen_suite_links(suite, arch):
html = '<li>'
for s in SUITES:
- html += ' <a href="/' + s + '/index_suite_' + arch + '_stats.html">' + s + '</a>'
+ html += ' <a href="/' + s + '/index_suite_' + arch + '_stats.html">' + s + '</a>&nbsp;&nbsp;'
html += '</li>'
return html