summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_common.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/reproducible_common.py')
-rwxr-xr-xbin/reproducible_common.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py
index d03e215a..b4d56223 100755
--- a/bin/reproducible_common.py
+++ b/bin/reproducible_common.py
@@ -552,6 +552,7 @@ def get_trailing_icon(package, bugs):
html = ''
if package in bugs:
for bug in bugs[package]:
+ html += '<a href="https://bugs.debian.org/{bug}">'.format(bug=bug)
html += '<span class="'
if bugs[package][bug]['done']:
html += 'bug-done" title="#' + str(bug) + ', done">#</span>'
@@ -561,6 +562,7 @@ def get_trailing_icon(package, bugs):
html += 'bug-patch" title="#' + str(bug) + ', with patch">+</span>'
else:
html += 'bug" title="#' + str(bug) + '">#</span>'
+ html += '</a>'
return html