Comment out this debug print, since it's no longer required, but should be moved to some logger()

This commit is contained in:
Oliver Falk
2018-05-09 14:20:10 +02:00
parent 5d0165c3c7
commit db91e49869

View File

@@ -55,8 +55,8 @@ class AddEmailForm(forms.Form):
'verification_link': link,
'site_name': settings.SITE_NAME,
})
if settings.DEBUG:
print('DEBUG: %s' % link)
#if settings.DEBUG:
# print('DEBUG: %s' % link)
send_mail(email_subject, email_body, settings.SERVER_EMAIL,
[unconfirmed.email])
return True