diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-01-15 17:54:56 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-01-16 11:50:01 +0100 |
commit | 08cdad9ab4dff611e592935e3b9804c855f620ce (patch) | |
tree | 30749a4b36c33e076db208f20513015480146155 | |
parent | bf2a8d7536d900d90afa0e2a0e69f01685bee67d (diff) | |
download | jenkins.debian.net-08cdad9ab4dff611e592935e3b9804c855f620ce.tar.xz |
reproducible: return an empty string, not Null in gen_bugs_links()
-rwxr-xr-x | bin/reproducible_html_packages.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index 424d6507..41004544 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -126,7 +126,7 @@ def gen_bugs_links(package, bugs): html += ' bug-patch' html += '">#' + str(bug) + '</a> ' print(package + html) - return html + return html def process_packages(packages, no_clean=False): |