I checked out 1.5 branch today and found a change that I can't find the debate/announcement for: e-mail to email in
django/core/validators.py:validate_email = EmailValidator(email_re, _('Enter a valid email address.'), 'invalid')
This change has me with
# in 1.4.x it is:
#error = 'Enter a valid e-mail address.'
# in 1.5.x it is:
#error = 'Enter a valid email address.'
#self.assertFormError(res, 'form', 'email', error)
❯ git checkout 1.4.3
❯ grep -r "Enter a valid email address." *
(Nothing there)
~/Code/github/django (1f0af3c) ...
> git checkout master
~/Code/github/django (master) ↑
❯ grep -r "Enter a valid email address." *
.... (lot's of stuff)
I'm sure this was discussed and noted somewhere; but, where?
-Skylar