Refs #23919 -- Removed an used block in ExceptionReporter.get_traceback_data().

The test from refs #20368 only runs this block on Python 2.
This commit is contained in:
Tim Graham 2017-02-09 09:03:28 -05:00 committed by GitHub
parent 1b96dbdad0
commit 21f13ff5b3
1 changed files with 0 additions and 3 deletions

View File

@ -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))