diff options
| author | Brian Rosner <brosner@gmail.com> | 2008-04-23 16:31:48 +0000 |
|---|---|---|
| committer | Brian Rosner <brosner@gmail.com> | 2008-04-23 16:31:48 +0000 |
| commit | 3f76c2a3612be39e0363fc5c59fc99a036449234 (patch) | |
| tree | 2d0bf11327e1470731daee195b9b956a9b68e6f6 | |
| parent | 7b7f4bdee251459760184e879be8faeca719ab01 (diff) | |
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
| -rw-r--r-- | django/contrib/auth/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): """ |
