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
This commit is contained in:
Brian Rosner 2008-08-24 22:45:35 +00:00
parent 6b5a607606
commit 072083f261
1 changed files with 1 additions and 1 deletions

View File

@ -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):
"""