From 4ef7b2aa736c4542473f81cdeb5dc6cc88e6b633 Mon Sep 17 00:00:00 2001 From: Joerg Jaspert Date: Sat, 2 May 2009 17:53:51 +0200 Subject: [PATCH] p-n allow process-new to also look in newstage/ for the source. files might not yet be in one of the other queues if it just got accepted through one of the NEW queues. No other process-* should need this, but p-n does. Signed-off-by: Joerg Jaspert --- dak/process_new.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dak/process_new.py b/dak/process_new.py index d631b53a..f8a6f40e 100755 --- a/dak/process_new.py +++ b/dak/process_new.py @@ -101,7 +101,7 @@ def recheck(): source_epochless_version = re_no_epoch.sub('', source_version) dsc_filename = "%s_%s.dsc" % (source_package, source_epochless_version) found = 0 - for q in ["Accepted", "Embargoed", "Unembargoed"]: + for q in ["Accepted", "Embargoed", "Unembargoed", "Newstage"]: if Cnf.has_key("Dir::Queue::%s" % (q)): if os.path.exists(Cnf["Dir::Queue::%s" % (q)] + '/' + dsc_filename): found = 1 -- 2.39.2