summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_notes.py
diff options
context:
space:
mode:
authorXimin Luo <infinity0@debian.org>2016-06-11 17:09:05 +0200
committerHolger Levsen <holger@layer-acht.org>2016-06-11 17:10:54 +0200
commite34eea14af3ac23322f1e1c28bbb063126fd21e0 (patch)
tree5f1d268fbccbadf8e42c5be4a66a9b96b01e5256 /bin/reproducible_html_notes.py
parent6325fba65a26cbf0739a1984384bca57257d02e9 (diff)
downloadjenkins.debian.net-e34eea14af3ac23322f1e1c28bbb063126fd21e0.tar.xz
reproducible debian: index_issues: some visual fixes
- replace underscore with space so browsers can wrap it better - better explanation of package alt text Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/reproducible_html_notes.py')
-rwxr-xr-xbin/reproducible_html_notes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py
index 47b5dbf3..3b048678 100755
--- a/bin/reproducible_html_notes.py
+++ b/bin/reproducible_html_notes.py
@@ -416,7 +416,7 @@ def index_issues(issues, scorefuncs):
issues_by_popcon = sorted(issues_with_popcon, key=lambda p: p[1], reverse=True)
popular_packages = set([p[0] for p in issues_by_popcon[:int(len(issues_by_popcon)/4)]])
issue_strings = [
- '<span %stitle="%s">%s</span>' % (
+ '<span %stitle="popcon score: %s">%s</span>' % (
'class="package-popular" ' if p[0] in popular_packages else '', p[1], p[0]
) for p in issues_with_popcon]
html += tab*5 + ', '.join(issue_strings) + '\n'