Skip to content

Commit

Permalink
rm comments
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyas-satish committed Sep 12, 2015
1 parent db82f44 commit 69f71f8
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions baseframe/forms/validators.py
Expand Up @@ -185,11 +185,8 @@ def __init__(self, message=None):
self.message = message

def __call__(self, form, field):
# emails = EMAIL_RE.findall(field.data or u'')
# emails.extend(EMAIL_RE.findall(deobfuscate_email(field.data or u'')))
emails = EMAIL_RE.findall(deobfuscate_email(field.data or u''))
for email in emails:
print emails
try:
diagnosis = is_email(email, check_dns=True, diagnose=True)
if diagnosis.code == 0:
Expand Down

0 comments on commit 69f71f8

Please sign in to comment.