diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-08-21 10:51:10 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-21 12:52:30 +0200 |
commit | 223041d96396078fd8494f7cdcbe37ecbf032a51 (patch) | |
tree | 97e29232f30b31a63156ff0a772f652664186554 | |
parent | 488f7ffb6b72af39e1ddc0315636339749b305d6 (diff) | |
download | jenkins.debian.net-223041d96396078fd8494f7cdcbe37ecbf032a51.tar.xz |
reproducible: remote_scheduler: clean the packages list from empty strings that somehow happens
-rwxr-xr-x | bin/reproducible_remote_scheduler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_remote_scheduler.py b/bin/reproducible_remote_scheduler.py index 6dd60367..b259f0a4 100755 --- a/bin/reproducible_remote_scheduler.py +++ b/bin/reproducible_remote_scheduler.py @@ -78,7 +78,7 @@ issue = scheduling_args.issue status = scheduling_args.status built_after = scheduling_args.after built_before = scheduling_args.before -packages = scheduling_args.packages +packages = [x for x in scheduling_args.packages if x] artifacts = scheduling_args.keep_artifacts notify = scheduling_args.notify or scheduling_args.noisy debug_url = scheduling_args.noisy |