diff options
author | Reiner Herrmann <reiner@reiner-h.de> | 2016-05-21 19:00:11 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-05-21 19:09:12 +0200 |
commit | 73f504b99c58acf52a2ad4c892eda71ea2e7ae1d (patch) | |
tree | 773780556b97e78f1da103af1eee284ce6617b20 /bin | |
parent | 174376fd678fff68229c9802f98fb9f346f2af63 (diff) | |
download | jenkins.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-x | bin/reproducible_common.py | 4 |
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> ' 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> ' html += '</li>' return html |