From: Joerg Jaspert Date: Sat, 2 May 2009 15:53:51 +0000 (+0200) Subject: p-n X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=4ef7b2aa736c4542473f81cdeb5dc6cc88e6b633;p=dak.git 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 --- 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