From bf65fd0a8050891cf4155eef8dbbe3d364699748 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Mon, 4 Aug 2008 12:11:04 +0000 Subject: [PATCH] Fixed #8901 -- Corrected typo in docstring. Thanks to Hayley Bonham for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8207 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 2b30e483c6..c214f4d4b8 100644 --- a/django/contrib/auth/forms.py +++ b/django/contrib/auth/forms.py @@ -103,7 +103,7 @@ class PasswordResetForm(forms.Form): def save(self, domain_override=None, email_template_name='registration/password_reset_email.html', use_https=False, token_generator=default_token_generator): """ - Generates a one-use only link for restting password and sends to the user + Generates a one-use only link for resetting password and sends to the user """ from django.core.mail import send_mail for user in self.users_cache: