﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
5131	admin/views/auth.py change password is not working	javierder@…	Adrian Holovaty	"Error code:
    File ""/var/lib/python-support/python2.5/django/contrib/admin/views/auth.py"" in user_change_password
        64.         'title': _('Change password: %s') % escape(user.username),
  ValueError at /admin/auth/user/2/password/
  unsupported format character 'S' (0x53) at index 22

The fix is really easy, in http://code.djangoproject.com/browser/django/trunk/django/contrib/admin/views/auth.py#L64
just change
'title': _('Change password: %s' ) % escape(user.username),
for
'title': _('Change password: %s' % escape(user.username)) ,


i think this is self explanatory."		closed	contrib.admin	0.96		duplicate	admin auth		Unreviewed	1	0	0	0	0	0
