Commit 072083f2 authored by Brian Rosner's avatar Brian Rosner
Browse files

Fixed #8520 -- Corrected a dumb typo in the call to password_change in...

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
parent 6b5a6076
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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):
        """