summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2008-08-04 12:11:04 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2008-08-04 12:11:04 +0000
commitbf65fd0a8050891cf4155eef8dbbe3d364699748 (patch)
tree95dbc27aa1ded1fe94e9d598952f056af581de0b
parentc622059f2daf496234a8086a4945f7c49e125126 (diff)
Fixed #8901 -- Corrected typo in docstring. Thanks to Hayley Bonham <djangocode@vortex.cx> for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8207 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/contrib/auth/forms.py2
1 files changed, 1 insertions, 1 deletions
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: