Refs #24324 -- Fixed crash in {% debug %} tag on Python 2.
If Django is installed in a path that contains non-ASCII characters, the tag failed with UnicodeDecodeError.
This commit is contained in:
parent
307c0f299a
commit
098fa12dd3
|
@ -94,7 +94,7 @@ class DebugNode(Node):
|
|||
from pprint import pformat
|
||||
output = [force_text(pformat(val)) for val in context]
|
||||
output.append('\n\n')
|
||||
output.append(pformat(sys.modules))
|
||||
output.append(force_text(pformat(sys.modules)))
|
||||
return ''.join(output)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue