Im getting following error from a model admin that I just converted from oldforms admin to newforms:
Traceback (most recent call last):
File "/home/unessanet/django/django/core/handlers/base.py", line 85, in get_response
response = callback(request, *callback_args, **callback_kwargs)
File "/home/unessanet/django/django/contrib/admin/sites.py", line 144, in root
return self.model_page(request, *url.split('/', 2))
File "/home/unessanet/django/django/views/decorators/cache.py", line 44, in _wrapped_view_func
response = view_func(request, *args, **kwargs)
File "/home/unessanet/django/django/contrib/admin/sites.py", line 161, in model_page
return admin_obj(request, rest_of_url)
File "/home/unessanet/django/django/contrib/admin/options.py", line 252, in __call__
return self.change_view(request, unquote(url))
File "/home/unessanet/django/django/contrib/admin/options.py", line 570, in change_view
'title': _('Change %s') % opts.verbose_name,
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 7: ordinal not in range(128)
The object in question has a proper __unicode__-method and a title with a unicode (non-ascii) character in it. The old admin worked just fine.
I'm running newest trunk (r8114) with MySQL, Apache and mod_python.