X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fqueue.py;h=9fac0cc00b2053e3deb63b7778adff9da48242b3;hb=1ee623994132a49a0251c23083dca750803b817f;hp=05cd0be0a2d142f4c74d7552512e21defdcb6a6d;hpb=6d6100fcee8e50bef063d8b8cd395773d83077b4;p=dak.git diff --git a/daklib/queue.py b/daklib/queue.py index 05cd0be0..9fac0cc0 100755 --- a/daklib/queue.py +++ b/daklib/queue.py @@ -106,12 +106,12 @@ def get_type(f): elif f["type"] in [ "orig.tar.gz", "orig.tar.bz2", "tar.gz", "tar.bz2", "diff.gz", "diff.bz2", "dsc" ]: type = "dsc" else: - fubar("invalid type (%s) for new. Dazed, confused and sure as heck not continuing." % (type)) + utils.fubar("invalid type (%s) for new. Dazed, confused and sure as heck not continuing." % (type)) # Validate the override type type_id = database.get_override_type_id(type) if type_id == -1: - fubar("invalid type (%s) for new. Say wha?" % (type)) + utils.fubar("invalid type (%s) for new. Say wha?" % (type)) return type