diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-03 00:48:29 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-03 00:48:29 +0100 |
commit | 209419c8dbcafeb8eb99e49100225c30791cd623 (patch) | |
tree | cb5055e13f1c07f72592bce80ad6a91bfc7d5133 /bin | |
parent | 59e1df3614d2203e93d38e0bdca6f7af4ad3ca30 (diff) | |
download | jenkins.debian.net-209419c8dbcafeb8eb99e49100225c30791cd623.tar.xz |
s#in particular##
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_notes.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index ba42be97..6d7181e2 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -361,8 +361,7 @@ def index_notes(notes, bugs): 'FROM results AS r JOIN sources AS s ON r.package_id=s.id ' + 'WHERE s.suite="sid" ORDER BY s.name') with_notes = [x for x in all_pkgs if x[0] in notes] - html = '\n<p>There are ' + str(len(notes)) + ' packages with notes.<br />\n' - html += 'In particular:</p>\n' + html = '\n<p>There are ' + str(len(notes)) + ' packages with notes.</p>\n' for status in ['unreproducible', 'FTBFS', 'not for us', 'blacklisted', 'reproducible']: pkgs = [x[0] for x in with_notes if x[1] == status] if not pkgs: |