diff options
| author | Brian Rosner <brosner@gmail.com> | 2008-08-24 22:45:35 +0000 |
|---|---|---|
| committer | Brian Rosner <brosner@gmail.com> | 2008-08-24 22:45:35 +0000 |
| commit | 072083f26155f1e61d859fdd2701d9718192cf77 (patch) | |
| tree | efb7e09d416153e656ce8b90b6dbb344bb3e269a | |
| parent | 6b5a607606a0589b9571634f82e8d5bbba0e1dfc (diff) | |
Fixed #8520 -- Corrected a dumb typo in the call to password_change in django/contrib/admin/sites.py. Thanks Karen Tracey for catching this.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8523 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/admin/sites.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/admin/sites.py b/django/contrib/admin/sites.py index 9c5a5f17af..dfeb8a4add 100644 --- a/django/contrib/admin/sites.py +++ b/django/contrib/admin/sites.py @@ -198,7 +198,7 @@ class AdminSite(object): """ from django.contrib.auth.views import password_change return password_change(request, - post_save_redirect='%spassword_change/done/' % self.root_path) + post_change_redirect='%spassword_change/done/' % self.root_path) def password_change_done(self, request): """ |
