summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_live_status.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@debian.org>2015-12-10 00:21:31 +0000
committerHolger Levsen <holger@layer-acht.org>2015-12-10 01:22:14 +0100
commitdd07fa044762e915e0adf965568ac87f65d22bcb (patch)
tree821b261ea0a17f7f13040675996254bd7b103cd8 /bin/reproducible_html_live_status.py
parentf48a6c40eac4c82b026c29a810fcc890c0f8b507 (diff)
downloadjenkins.debian.net-dd07fa044762e915e0adf965568ac87f65d22bcb.tar.xz
reproducible: live_status: fix a TypeError
Diffstat (limited to 'bin/reproducible_html_live_status.py')
-rwxr-xr-xbin/reproducible_html_live_status.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_live_status.py b/bin/reproducible_html_live_status.py
index 49ab803f..78187be5 100755
--- a/bin/reproducible_html_live_status.py
+++ b/bin/reproducible_html_live_status.py
@@ -69,7 +69,7 @@ def generate_live_status_table(arch):
for row in rows:
counter += 1
if counter > builders:
- html += '<tr><td colspan="10">There are more builds marked as currently building in the database (' + counter + ') than there are ' + arch + ' build jobs (' + builders + '). This does not compute, please investigate and fix the cause.</td></tr>'
+ html += '<tr><td colspan="10">There are more builds marked as currently building in the database (' + str(counter) + ') than there are ' + arch + ' build jobs (' + str(builders) + '). This does not compute, please investigate and fix the cause.</td></tr>'
elif builders == 0:
html += '<tr><td colspan="10">0 build jobs for ' + arch + ' detected. This does not compute, please investigate and fix the cause.</td></tr>'
suite = row[1]