X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=daklib%2Fregexes.py;h=daf16ff653006220e35a23d4af38b3dc2c115fed;hb=19af3d03e23510cc9fbfa376cb79082744c0a687;hp=cc5d1be6873de251852e92b0e85d8e1a7900f3e1;hpb=4c2ec0229b86a4ddb196bb567cf90ea2f94ae84f;p=dak.git diff --git a/daklib/regexes.py b/daklib/regexes.py index cc5d1be6..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 .+$")