diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-02-16 00:08:04 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-02-16 00:15:33 +0100 |
commit | 1bf560c820a831d0860bcc8b185695303e23e07a (patch) | |
tree | dd29bb0e00632825e7ed5510d814742ee71b5825 | |
parent | e4c0eae7e2e5eeb1d342c1b8249213dbd5470a07 (diff) | |
download | jenkins.debian.net-1bf560c820a831d0860bcc8b185695303e23e07a.tar.xz |
reproducible: common, correctly use '#' for bugs without patch in get_trailing_icon()
-rwxr-xr-x | bin/reproducible_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 09612580..1ae206b5 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -410,7 +410,7 @@ def get_trailing_icon(package, bugs): elif bugs[package][bug]['patch']: html += 'bug-patch" title="#' + str(bug) + ', with patch">+</span>' else: - html += '" title="#' + str(bug) + '">+</span>' + html += '" title="#' + str(bug) + '">#</span>' return html |