summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/views/debug.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/django/views/debug.py b/django/views/debug.py
index c7c1b20f30..2b829716fd 100644
--- a/django/views/debug.py
+++ b/django/views/debug.py
@@ -258,9 +258,6 @@ class ExceptionReporter:
frame_vars = []
for k, v in frame['vars']:
v = pprint(v)
- # The force_escape filter assumes str, make sure that works
- if isinstance(v, bytes):
- v = v.decode('utf-8', 'replace') # don't choke on non-utf-8 input
# Trim large blobs of data
if len(v) > 4096:
v = '%s... <trimmed %d bytes string>' % (v[0:4096], len(v))