Merge pull request #23 from jqueuniet/fix_email_regexp

Change the email regular expression to fix a few validation issues
This commit is contained in:
Carpentier Pierre-Francois 2019-03-20 18:33:19 +01:00 committed by GitHub
commit 3b58f1464e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ class Attributes:
raise MissingUserKey()
def _is_email(self, email):
pattern = r'[\.\w]{1,}[@]\w+[.]\w+'
pattern = r'[\+\.\w]+@[-\.\w]+\.\w+'
if re.match(pattern, email):
return True
else: