summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_remote_scheduler.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-08-21 10:51:10 +0000
committerHolger Levsen <holger@layer-acht.org>2015-08-21 12:52:30 +0200
commit223041d96396078fd8494f7cdcbe37ecbf032a51 (patch)
tree97e29232f30b31a63156ff0a772f652664186554 /bin/reproducible_remote_scheduler.py
parent488f7ffb6b72af39e1ddc0315636339749b305d6 (diff)
downloadjenkins.debian.net-223041d96396078fd8494f7cdcbe37ecbf032a51.tar.xz
reproducible: remote_scheduler: clean the packages list from empty strings that somehow happens
Diffstat (limited to 'bin/reproducible_remote_scheduler.py')
-rwxr-xr-xbin/reproducible_remote_scheduler.py2
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