From 3f76c2a3612be39e0363fc5c59fc99a036449234 Mon Sep 17 00:00:00 2001 From: Brian Rosner Date: Wed, 23 Apr 2008 16:31:48 +0000 Subject: [PATCH] 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 --- django/contrib/auth/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/auth/forms.py b/django/contrib/auth/forms.py index 6af9139cb2..f63dc7b854 100644 --- a/django/contrib/auth/forms.py +++ b/django/contrib/auth/forms.py @@ -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): """