X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=daklib%2Fqueue.py;h=d97b99f580df526dcdee93e66be4a8e0912ce5c5;hb=bfb5e2fb5f3100b9b1247ea346462a49deb9d011;hp=25890367a8807b5e9b1915e1f9d13f86af3c3b96;hpb=8f1a6ffdbf7683fba88d8d5a1d8cea4dc5512abb;p=dak.git diff --git a/daklib/queue.py b/daklib/queue.py index 25890367..d97b99f5 100644 --- a/daklib/queue.py +++ b/daklib/queue.py @@ -115,8 +115,8 @@ def determine_new(changes, files, warn=1): # Build up a list of potentially new things for name, f in files.items(): # Skip byhand elements - if f["type"] == "byhand": - continue +# if f["type"] == "byhand": +# continue pkg = f["package"] priority = f["priority"] section = f["section"] @@ -218,7 +218,7 @@ def check_valid(new): def check_status(files): new = byhand = 0 for f in files.keys(): - if files[f]["type"] == "byhand": + if files[f].has_key("byhand"): byhand = 1 elif files[f].has_key("new"): new = 1