[Qa-jenkins-scm] [jenkins.debian.net] 01/02: reproducible: remote_scheduler: clean the packages list from empty strings that somehow happens
Holger Levsen
holger at moszumanska.debian.org
Fri Aug 21 10:52:41 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 223041d96396078fd8494f7cdcbe37ecbf032a51
Author: Mattia Rizzolo <mattia at mapreri.org>
Date: Fri Aug 21 10:51:10 2015 +0000
reproducible: remote_scheduler: clean the packages list from empty strings that somehow happens
---
bin/reproducible_remote_scheduler.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/reproducible_remote_scheduler.py b/bin/reproducible_remote_scheduler.py
index 6dd6036..b259f0a 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
--
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