diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-03-01 21:15:08 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-01 22:40:13 +0100 |
commit | d4b044a9283ab0ead5b886f14d0f2033f6645795 (patch) | |
tree | 8d08635e6bfde9b80c7abbd688aab344c99f5b6b /bin | |
parent | c78eba1225880d5d38432fc2a96f51e6e964ccef (diff) | |
download | jenkins.debian.net-d4b044a9283ab0ead5b886f14d0f2033f6645795.tar.xz |
reproducible: html_notes: fix TypeError in gen_html_issue()
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_notes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index 836b6ccf..ba42be97 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -243,8 +243,8 @@ def gen_html_issue(issue): affected += tab*4 + '<b>' + str(len(issues_count[issue])) + '</b>:\n' for pkg in sorted(issues_count[issue]): # FIXME we currently consider notes only for sid/amd64 - affected += tab*7 + '<a href="%s/sid/amd64/%s.html" ' + \ - 'class="noted">%s</a>\n' % (RB_PKG_URI, pkg, pkg) + affected += (tab*7 + '<a href="%s/sid/amd64/%s.html" ' + + 'class="noted">%s</a>\n') % (RB_PKG_URI, pkg, pkg) except KeyError: # The note is not listed in any package, that is affected = '<i>None</i>' # check for description: |