From: Joerg Jaspert Date: Sat, 11 Dec 2010 22:01:11 +0000 (+0100) Subject: better function names X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=9b2e18bb9f0856a80ff26f3da01e4a6ec4061566;p=dak.git better function names Signed-off-by: Joerg Jaspert --- diff --git a/daklib/queue_install.py b/daklib/queue_install.py index 1671c721..2e5b1f04 100755 --- a/daklib/queue_install.py +++ b/daklib/queue_install.py @@ -256,8 +256,8 @@ QueueInfo = { "new": { "is": is_new, "process": acknowledge_new }, "autobyhand" : { "is" : is_autobyhand, "process": do_autobyhand }, "byhand" : { "is": is_byhand, "process": do_byhand }, - "embargoed" : { "is": is_embargoed, "process": do_embargoed }, - "unembargoed" : { "is": is_unembargoed, "process": do_unembargoed }, + "embargoed" : { "is": is_embargo, "process": do_embargo }, + "unembargoed" : { "is": is_unembargo, "process": do_unembargo }, } def determine_target(u):