X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fqueue.py;h=6d68af4f587bdaa1d35feb5ed32a4430fff5151c;hb=2c639c40c65966711c82d46a6f4ee8739e819aad;hp=09831f4d75a1f1280f6e58b99c232a37af0ff6d5;hpb=292015306bdfb622db7c05f549874ce94952b245;p=dak.git diff --git a/daklib/queue.py b/daklib/queue.py index 09831f4d..6d68af4f 100755 --- a/daklib/queue.py +++ b/daklib/queue.py @@ -24,18 +24,12 @@ import cPickle, errno, os, pg, re, stat, sys, time import apt_inst, apt_pkg import utils, database from dak_exceptions import * +from regexes import re_isanum, re_default_answer, re_fdnic, re_bin_only_nmu from types import * ############################################################################### -re_isanum = re.compile (r"^\d+$") -re_default_answer = re.compile(r"\[(.*)\]") -re_fdnic = re.compile(r"\n\n") -re_bin_only_nmu = re.compile(r"\+b\d+$") - -################################################################################ - # Determine what parts in a .changes are NEW def determine_new(changes, files, projectB, warn=1):