summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_notes.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-01-16 01:16:10 +0100
committerHolger Levsen <holger@layer-acht.org>2015-01-16 11:50:01 +0100
commit094a2de2fc5fc7d18cb69a65aadfcf20f1f01c7b (patch)
tree3e232a65bd3a5832b3b9bdbab27a8b5b513efd73 /bin/reproducible_html_notes.py
parent967bc1e012dd6e234ec4e86dff049a375d255e90 (diff)
downloadjenkins.debian.net-094a2de2fc5fc7d18cb69a65aadfcf20f1f01c7b.tar.xz
reproducible: add some infos for the user about the # and
+ signs
Diffstat (limited to 'bin/reproducible_html_notes.py')
-rwxr-xr-xbin/reproducible_html_notes.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py
index f85a9e30..8e90feb7 100755
--- a/bin/reproducible_html_notes.py
+++ b/bin/reproducible_html_notes.py
@@ -312,9 +312,11 @@ def get_trailing_icon(package, bugs):
for bug in bugs[package]:
html += '<span class="'
if bugs[package][bug]['done']:
- html += 'bug-done">#</span>'
+ html += 'bug-done" title="#' + str(bug) + ', done">#</span>'
elif bugs[package][bug]['patch']:
- html += 'bug-patch">+</span>'
+ html += 'bug-patch" title="#' + str(bug) + ', with patch">+</span>'
+ else:
+ html += '" title="#' + str(bug) + '">+</span>'
print(package + ' ' + html)
return html