[Qa-jenkins-scm] [jenkins.debian.net] 01/01: reproducible: fix variable names
Holger Levsen
holger at moszumanska.debian.org
Sat Jun 13 00:25:39 UTC 2015
This is an automated email from the git hooks/post-receive script.
holger pushed a commit to branch master
in repository jenkins.debian.net.
commit 74e4d6d133c3af3ed0c025374b105a10d9b88ad0
Author: Holger Levsen <holger at layer-acht.org>
Date: Sat Jun 13 02:25:07 2015 +0200
reproducible: fix variable names
---
bin/reproducible_scheduler.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py
index b6ebc35..3f079f6 100755
--- a/bin/reproducible_scheduler.py
+++ b/bin/reproducible_scheduler.py
@@ -251,8 +251,8 @@ def schedule_new_versions(total):
many_new = 150
for suite in SUITES:
log.info('Requesting ' + str(many_new) + ' new versions in ' + suite + '...')
- new[suite] = query_new_versions(suite, many_new)
- log.info('Received ' + str(len(new[suite])) + ' new packages in ' + suite + ' to schedule.')
+ packages[suite] = query_new_versions(suite, many_new)
+ log.info('Received ' + str(len(packages[suite])) + ' new packages in ' + suite + ' to schedule.')
log.info('==============================================================')
if add_up_numbers(packages) != '0':
msg = add_up_numbers(packages) + ' packages with new versions'
@@ -277,8 +277,8 @@ def schedule_old_versions(total):
else:
suite_many_old = int(many_old_base) # experimental is roughly one twentieth of the size of the other suites
log.info('Requesting ' + str(suite_many_old) + ' old packages in ' + suite + '...')
- old[suite] = query_old_versions(suite, suite_many_old)
- log.info('Received ' + str(len(old[suite])) + ' old packages in ' + suite + ' to schedule.')
+ packages[suite] = query_old_versions(suite, suite_many_old)
+ log.info('Received ' + str(len(packages[suite])) + ' old packages in ' + suite + ' to schedule.')
log.info('==============================================================')
if add_up_numbers(packages) != '0':
msg = add_up_numbers(packages) + ' old packages with the same version'
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/qa/jenkins.debian.net.git
More information about the Qa-jenkins-scm
mailing list