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... ' % (v[0:4096], len(v))