X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fprocess_new.py;h=0ae5307341d9c499db326a045d6541815415497b;hb=7f7f54ceba3b63e0aa495fc1448dce9818ff320e;hp=085e0913117277a7ffe72ba86b9c19b04b0ba690;hpb=2764c503d2f9c2177873f861c9dad76bcd2c04ca;p=dak.git diff --git a/dak/process_new.py b/dak/process_new.py index 085e0913..0ae53073 100755 --- a/dak/process_new.py +++ b/dak/process_new.py @@ -85,10 +85,11 @@ def recheck(): dsc_filename = "%s_%s.dsc" % (source_package, source_epochless_version) found = 0 for q in ["Accepted", "Embargoed", "Unembargoed"]: - if os.path.exists(Cnf["Dir::Queue::%s" % (q)] + '/' + dsc_filename): - found = 1 + if Cnf.has_key(Cnf["Dir::Queue::%s" % (q)]): + if os.path.exists(Cnf["Dir::Queue::%s" % (q)] + '/' + dsc_filename): + found = 1 if not found: - reject("no source found for %s %s (%s)." % (source_package, source_version, file)) + reject("no source found for %s %s (%s)." % (source_package, source_version, file)) # Version and file overwrite checks if files[file]["type"] == "deb": @@ -816,7 +817,7 @@ def do_accept(): # Check for override disparities Upload.Subst["__SUMMARY__"] = summary else: - Upload.accept(summary, short_summary) + Upload.accept(summary, short_summary) os.unlink(Upload.pkg.changes_file[:-8]+".dak") os.unlink(Cnf["Process-New::AcceptedLockFile"])