diff --git a/files/helpers/regex.py b/files/helpers/regex.py index d5ff3fbef..77f078d01 100644 --- a/files/helpers/regex.py +++ b/files/helpers/regex.py @@ -9,7 +9,7 @@ valid_username_regex = re.compile("^[\w-]{3,25}$", flags=re.A) valid_username_patron_regex = re.compile("^[\w-]{1,25}$", flags=re.A) mention_regex = re.compile('(?)!(everyone)' + NOT_IN_CODE_OR_LINKS, flags=re.A)