summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_scheduler.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-02-28 16:27:15 +0100
committerHolger Levsen <holger@layer-acht.org>2015-02-28 17:30:05 +0100
commitc8e63af710da441078fa1c9855ac8063ff9a64d0 (patch)
tree4083c4aca99dd84f5e20dad83cf5448167ae7373 /bin/reproducible_scheduler.py
parent8ae9e1c028db5d5ad69c87c9c63c47a1b0a28b01 (diff)
downloadjenkins.debian.net-c8e63af710da441078fa1c9855ac8063ff9a64d0.tar.xz
reproducible: scheduler: cast an int to str to fix a TypeError
Diffstat (limited to 'bin/reproducible_scheduler.py')
-rwxr-xr-xbin/reproducible_scheduler.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py
index 8f4259d7..6a772ae2 100755
--- a/bin/reproducible_scheduler.py
+++ b/bin/reproducible_scheduler.py
@@ -31,9 +31,11 @@ def call_apt_update(suite):
'apt-get', 'update']):
return
else:
- log.warning('`apt-get update` failed. Retrying another ' + 3-i + ' times.')
+ log.warning('`apt-get update` failed. Retrying another ' + str(3-i)
+ + ' times.')
sleep(randint(1, 70) + 30)
- print_critical_message('`apt-get update` for suite '+suite+' failed three times in a row, giving up.')
+ print_critical_message('`apt-get update` for suite ' + suite +
+ ' failed three times in a row, giving up.')
sys.exit(1)