diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-19 09:21:31 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-19 09:21:31 +0200 |
commit | 18eb6e76a871ec5b78cd318a2f22a61a3de2d52d (patch) | |
tree | b922fc557705f54c35afc5929db4969f42e86e31 | |
parent | e15038ad5095d4c1ce44127ed7c2004b735e2aa3 (diff) | |
download | jenkins.debian.net-18eb6e76a871ec5b78cd318a2f22a61a3de2d52d.tar.xz |
fix typo in comment
-rwxr-xr-x | bin/reproducible_scheduler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index e13fdccd..9da4a18f 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -339,7 +339,7 @@ def query_new_versions(suite, arch, limit): ORDER BY r.build_date LIMIT {limit}""".format(suite=suite, arch=arch, limit=limit) pkgs = query_db(query) - # this is to avoid costant rescheduling of packages in our exp repository + # this is to avoid constant rescheduling of packages in our exp repository packages = [(x[0], x[1]) for x in pkgs if version_compare(x[2], x[3]) > 0] print_schedule_result(suite, criteria, packages) return packages |