Hi, I am stuck with this error, does someone know what it mean? I am using django svn and sqlite.
This error happen when I try to delete an object with the admin interface but it delete fine with the shell. any help greatly appreciated alex Traceback (most recent call last): File "/home/alex/project/django/myapp/django/core/handlers/base.py" in get_response 77. response = callback(request, *callback_args, **callback_kwargs) File "/home/alex/project/django/myapp/django/contrib/admin/views/decorators.py" in _checklogin 55. return view_func(request, *args, **kwargs) File "/home/alex/project/django/myapp/django/views/decorators/cache.py" in _wrapped_view_func 39. response = view_func(request, *args, **kwargs) File "/home/alex/project/django/myapp/django/contrib/admin/views/main.py" in delete_stage 512. _get_deleted_objects(deleted_objects, perms_needed, request.user, obj, opts, 1) File "/home/alex/project/django/myapp/django/contrib/admin/views/main.py" in _get_deleted_objects 457. (force_unicode(capfirst(related.opts.verbose_name)), related.opts.app_label, related.opts.object_name.lower(), sub_obj._get_pk_val(), escape(sub_obj)), []]) File "/home/alex/project/django/myapp/django/utils/functional.py" in wrapper 122. return func(*args, **kwargs) File "/home/alex/project/django/myapp/django/utils/html.py" in escape 30. return force_unicode(html).replace('&', '&').replace('<', '<').replace('>', '>').replace('"', '"').replace("'", ''') File "/home/alex/project/django/myapp/django/utils/encoding.py" in force_unicode 40. s = unicode(str(s), encoding, errors) UnicodeEncodeError at /admin/parts/part/1/delete/ 'ascii' codec can't encode character u'\u2726' in position 15: ordinal not in range(128) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---