password_change() got an unexpected keyword argument 'post_save_redirect'
As reported on the user's list: http://groups.google.com/group/django-users/browse_thread/thread/1906d4819565f78c
the admin change password link generates an exception. This was introducted in [8473]. The new parameter to change_password was called 'post_change_redirect' in change_password itself but 'post_save_redirect' in the code that attempts to pass in the new parameter. I'll attach a patch that uses the change_password name consistently.
Change History
(4)
Resolution: |
→ fixed
|
Status: |
new → closed
|
Cc: |
password_change() got an unexpected keyword argument 'template_name' added
|
(In [8523]) Fixed #8520 -- Corrected a dumb typo in the call to password_change in django/contrib/admin/sites.py. Thanks Karen Tracey for catching this.