diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-10-27 04:34:50 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-10-27 04:34:50 +0000 |
| commit | 212aa32e2a27469f542a9298c5ba0c2c04e5b7ff (patch) | |
| tree | f932fb9e0989c8e09489ebe92b035813f1da6bc2 | |
| parent | 471616aae9541d22e2fe77280cccb1515958db4e (diff) | |
Fixed #5798 -- Added a missing translation marker. Thanks, maru.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6617 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 16ee0289a2..47a974cacd 100644 --- a/django/contrib/auth/forms.py +++ b/django/contrib/auth/forms.py @@ -104,7 +104,7 @@ class PasswordResetForm(oldforms.Manipulator): 'site_name': site_name, 'user': user, } - send_mail('Password reset on %s' % site_name, t.render(Context(c)), None, [user.email]) + send_mail(_('Password reset on %s') % site_name, t.render(Context(c)), None, [user.email]) class PasswordChangeForm(oldforms.Manipulator): "A form that lets a user change his password." |
