﻿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
5132	admin/views/auth.py change password is not working	javierder@…	Adrian Holovaty	"Error code:[[br]]
    File ""/var/lib/python-support/python2.5/django/contrib/admin/views/auth.py"" in user_change_password[[br]]
        64.         'title': _('Change password: %s') % escape(user.username),[[br]]
  ValueError at /admin/auth/user/2/password/[[br]]
  unsupported format character 'S' (0x53) at index 22[[br]]

The fix is really easy, in http://code.djangoproject.com/browser/django/trunk/django/contrib/admin/views/auth.py#L64[[br]]
just change[[br]]
'title': _('Change password: %s' ) % escape(user.username),[[br]]
for[[br]]
'title': _('Change password: %s' % escape(user.username)) ,[[br]]
[[br]][[br]]

i think this is self explanatory."		closed	contrib.admin	0.96		duplicate	admin auth	gomo@…	Unreviewed	1	0	0	0	0	0
