diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-02-14 18:40:46 +0100 |
---|---|---|
committer | Mattia Rizzolo <mattia@mapreri.org> | 2015-02-14 18:40:46 +0100 |
commit | 6c8a86ede6816bc883cc3f4db3f2a946f01c221a (patch) | |
tree | f649bf6b812fe5465c047e517836d56799c4f00b | |
parent | b79fc54d17e47c6f847d4db487ca06726b2fff29 (diff) | |
download | jenkins.debian.net-6c8a86ede6816bc883cc3f4db3f2a946f01c221a.tar.xz |
reproducible: fix html in reproducible_html_notes
-rwxr-xr-x | bin/reproducible_html_notes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index 4d593a83..78cc52f8 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -354,7 +354,7 @@ def get_trailing_icon(package, bugs): def index_notes(notes): bugs = get_bugs() log.debug('Building the index_notes page...') - html = '\n<p>There are ' + str(len(notes)) + ' packages with notes.<p>\n' + html = '\n<p>There are ' + str(len(notes)) + ' packages with notes.</p>\n' html += '<p>\n' + tab + '<code>\n' html = (tab*2).join(html.splitlines(True)) for pkg in sorted(notes): |