Commit 098fa12d authored by Tim Graham's avatar Tim Graham
Browse files

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.
parent 307c0f29
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)