X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fregexes.py;h=62b8ac2e7625701a7f781f32ec85abfaf3f727da;hb=80b19c15fba6accf7d8fa6081dcd522d2a201fec;hp=3d7d7a8bf534031781ef697776784502db9fbe98;hpb=4d01e28a80b0fa8dae0a0395201469eab2e799e0;p=dak.git diff --git a/daklib/regexes.py b/daklib/regexes.py index 3d7d7a8b..62b8ac2e 100755 --- a/daklib/regexes.py +++ b/daklib/regexes.py @@ -113,7 +113,7 @@ re_build_dep_arch = re.compile(r"\[[^]]+\]") re_broken_package = re.compile(r"[a-zA-Z]\w+\s+\-.*") # From dak/add_user.py -re_gpg_fingerprint = re.compile(r"^fpr:+(.*):$", re.MULTILINE); +re_gpg_fingerprint_colon = re.compile(r"^fpr:+(.*):$", re.MULTILINE); # The next one is dirty re_user_address = re.compile(r"^pub:.*<(.*)@.*>.*$", re.MULTILINE); re_user_mails = re.compile(r"^(pub|uid):[^rdin].*<(.*@.*)>.*$", re.MULTILINE);