mirror of
https://github.com/django/django.git
synced 2025-07-04 01:39:20 +00:00
newforms-admin: Fixed a typo that should read "E-mail" and not "Email" per the guidelines.
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7450 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
7b7f4bdee2
commit
3f76c2a361
@ -88,7 +88,7 @@ class AuthenticationForm(forms.Form):
|
||||
return self.user_cache
|
||||
|
||||
class PasswordResetForm(forms.Form):
|
||||
email = forms.EmailField(label=_("Email"), max_length=40)
|
||||
email = forms.EmailField(label=_("E-mail"), max_length=40)
|
||||
|
||||
def clean_email(self):
|
||||
"""
|
||||
|
Loading…
x
Reference in New Issue
Block a user