1
0
mirror of https://github.com/django/django.git synced 2025-07-04 17:59:13 +00:00

unicode: Fixed #4367 -- Fixed a problem when trying to display some

legitimately non-unicode, non-UTF-8 data. The workaround is probably a bit
broad, but it shouldn't hurt in any unintended way I can think of.


git-svn-id: http://code.djangoproject.com/svn/django/branches/unicode@5323 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2007-05-24 01:25:51 +00:00
parent 19d71a21df
commit 3989feed0c

View File

@ -706,7 +706,12 @@ def resolve_variable(path, context):
raise
del bits[0]
if isinstance(current, (basestring, Promise)):
current = force_unicode(current)
try:
current = force_unicode(current)
except UnicodeDecodeError:
# Failing to convert to unicode can happen sometimes (e.g. debug
# tracebacks). So we allow it in this particular instance.
pass
return current
class Node(object):