summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-01-15 17:54:56 +0100
committerHolger Levsen <holger@layer-acht.org>2015-01-16 11:50:01 +0100
commit08cdad9ab4dff611e592935e3b9804c855f620ce (patch)
tree30749a4b36c33e076db208f20513015480146155
parentbf2a8d7536d900d90afa0e2a0e69f01685bee67d (diff)
downloadjenkins.debian.net-08cdad9ab4dff611e592935e3b9804c855f620ce.tar.xz
reproducible: return an empty string, not Null in gen_bugs_links()
-rwxr-xr-xbin/reproducible_html_packages.py2
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):