From: Mark Hymers Date: Wed, 28 Oct 2009 10:50:38 +0000 (+0000) Subject: fix indentation X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=52b14d883272923a4296ac02921ccf350815db83;p=dak.git fix indentation Signed-off-by: Mark Hymers --- diff --git a/dak/process_new.py b/dak/process_new.py index 62f30f3c..77f6e5af 100755 --- a/dak/process_new.py +++ b/dak/process_new.py @@ -829,15 +829,15 @@ def do_accept(upload): if not Options["No-Action"]: (summary, short_summary) = upload.build_summaries() - if cnf.FindB("Dinstall::SecurityQueueHandling"): - upload.dump_vars(cnf["Dir::Queue::Embargoed"]) - upload.move_to_dir(cnf["Dir::Queue::Embargoed"]) - upload.queue_build("embargoed", cnf["Dir::Queue::Embargoed"]) - # Check for override disparities - upload.Subst["__SUMMARY__"] = summary - else: - # Just a normal upload, accept it... - _accept(upload) + if cnf.FindB("Dinstall::SecurityQueueHandling"): + upload.dump_vars(cnf["Dir::Queue::Embargoed"]) + upload.move_to_dir(cnf["Dir::Queue::Embargoed"]) + upload.queue_build("embargoed", cnf["Dir::Queue::Embargoed"]) + # Check for override disparities + upload.Subst["__SUMMARY__"] = summary + else: + # Just a normal upload, accept it... + _accept(upload) def do_pkg(changes_file, session): u = Upload()