X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fregexes.py;h=daf16ff653006220e35a23d4af38b3dc2c115fed;hb=d0d94b9b1e5b21a6769991ffcb8a4eb4983efc71;hp=6be999771acabbd41ff2926061a5cbde9ad1f1a6;hpb=731c2232d9964d0f441ff5ea386e5e9937aa77ab;p=dak.git diff --git a/daklib/regexes.py b/daklib/regexes.py index 6be99977..daf16ff6 100755 --- a/daklib/regexes.py +++ b/daklib/regexes.py @@ -112,4 +112,7 @@ re_user_mails = re.compile(r"^(pub|uid):[^rdin].*<(.*@.*)>.*$", re.MULTILINE); re_user_name = re.compile(r"^pub:.*:(.*)<.*$", re.MULTILINE); re_re_mark = re.compile(r'^RE:') -re_parse_lintian = re.compile(r"^(W|E|O): (.*?): ([^ ]*) ?(.*)$") +re_parse_lintian = re.compile(r"^(?PW|E|O): (?P.*?): (?P[^ ]*) ?(?P.*)$") + +# in process-upload +re_match_expired = re.compile(r"^The key used to sign .+ has expired on .+$")