diff options
Diffstat (limited to 'bin/reproducible_html_notes.py')
-rwxr-xr-x | bin/reproducible_html_notes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index 13ef4c61..c95f30d7 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -409,7 +409,7 @@ def index_notes(notes, bugs): def index_no_notes_section(notes, bugs, packages, suite, arch): - html = '<p>In ' + suite + '/' + arch + ':</p>\n' + html = '' for status in ['unreproducible', 'FTBFS']: pkgs = [x for x in packages if x[3] == status] if not pkgs: @@ -417,7 +417,7 @@ def index_no_notes_section(notes, bugs, packages, suite, arch): html += '<p>\n' html += tab + '<img src="/static/' + join_status_icon(status)[1] + '"' html += ' alt="' + status + ' icon" />\n' - html += tab + str(len(pkgs)) + ' ' + status + ' packages:\n' + html += tab + str(len(pkgs)) + ' ' + status + ' packages in ' + suite + '/' + arch + ':\n' html += tab + '<code>\n' for pkg in pkgs: # 0: name, 1: suite, 2: arch, 3: status |