summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_scheduler.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-05-28 14:59:08 +0200
committerHolger Levsen <holger@layer-acht.org>2015-05-28 14:59:08 +0200
commit4074327457ffdf66d7bab5367cba643cb0b5449f (patch)
tree8bf24b91589cab48312c2b9ca8aa865132b54846 /bin/reproducible_scheduler.py
parent7bc0ae59871f46e68482a4aa836a8744eed33c65 (diff)
downloadjenkins.debian.net-4074327457ffdf66d7bab5367cba643cb0b5449f.tar.xz
reproducible: fix type
Diffstat (limited to 'bin/reproducible_scheduler.py')
-rwxr-xr-xbin/reproducible_scheduler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py
index baa41ed3..f5b6932c 100755
--- a/bin/reproducible_scheduler.py
+++ b/bin/reproducible_scheduler.py
@@ -284,7 +284,7 @@ def scheduler():
priotized_suite_order = ['unstable']
for suite in SUITES:
if suite not in priotized_suite_order:
- priotized_suite_order += suite
+ priotized_suite_order.append(suite)
for suite in priotized_suite_order:
query = 'SELECT count(*) ' + \
'FROM schedule AS p JOIN sources AS s ON p.package_id=s.id ' + \