diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2008-08-04 12:11:04 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2008-08-04 12:11:04 +0000 |
| commit | bf65fd0a8050891cf4155eef8dbbe3d364699748 (patch) | |
| tree | 95dbc27aa1ded1fe94e9d598952f056af581de0b | |
| parent | c622059f2daf496234a8086a4945f7c49e125126 (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.py | 2 |
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: |
