]> git.decadent.org.uk Git - dak.git/blobdiff - daklib/queue_install.py
better function names
[dak.git] / daklib / queue_install.py
index 1671c721e5ad53a8910e006aac77a933d3ec2424..2e5b1f0462189c750f1d10ff57a3914e05037019 100755 (executable)
@@ -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):