From 5b6a1e7191c2f87213a85cb86239656912086b3a Mon Sep 17 00:00:00 2001 From: Mattia Rizzolo Date: Thu, 15 Jan 2015 23:11:29 +0100 Subject: reproducible: _html_notes: fixup previous commit + add a counter --- bin/reproducible_html_notes.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'bin/reproducible_html_notes.py') diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index 8e90feb7..c6cdde80 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -296,8 +296,14 @@ def index_issues(issues): + tab*3 + "Affected packages\n" + tab*2 + "\n" + tab + "\n" html = (tab*2).join(templ.splitlines(True)) for issue in sorted(issues): - html += tab*3 + '' + issue + '' + issues_count[issue] + '\n' + html += tab*3 + '\n' + html += tab*4 + '' + issue + '\n' + html += tab*4 + '\n' + html += tab*5 + '' + str(len(issues_count[issue])) + ':\n' + html += tab*5 + ', '.join(issues_count[issue]) + '\n' + html += tab*4 + '\n' + html += tab*3 + '\n' html += tab*2 + '\n' html += tab*2 + '

Notes are stored in notes.git.

' title = 'Overview of known issues related to reproducible builds' -- cgit v1.2.3-54-g00ecf