diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-19 09:54:37 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-19 09:54:37 +0200 |
commit | e2c766d218f85c0ebb86104213a84f388b694693 (patch) | |
tree | f1c7441c125f020fb118226cbb27593af80722a5 | |
parent | 32bb7263fa224b122fa89c40e4358fac5e16fd23 (diff) | |
download | jenkins.debian.net-e2c766d218f85c0ebb86104213a84f388b694693.tar.xz |
reproducible: shorten job output
-rwxr-xr-x | bin/reproducible_scheduler.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index 0bd67b46..48c45525 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -287,11 +287,9 @@ def print_schedule_result(suite, criteria, packages): def queue_packages(all_pkgs, packages, date): date = date.strftime('%Y-%m-%d %H:%M') pkgs = [x for x in packages if x[0] not in all_pkgs] - log.info('--------------------------------------------------------------') log.info('The following ' + str(len(pkgs)) + ' source packages have ' + 'been queued up for scheduling at ' + date + ': ' + ' '.join([str(x[1]) for x in pkgs])) - log.info('--------------------------------------------------------------') all_pkgs.update({x[0]: date for x in pkgs}) return all_pkgs |