Change to contextlib.suppress, a bit cleaner

This commit is contained in:
Eli Uriegas 2016-12-30 12:22:24 -06:00 committed by GitHub
parent 683c0c1390
commit 58012366f3

View File

@ -1,5 +1,6 @@
from asyncio import get_event_loop
from collections import deque
from contextlib import suppress
from functools import partial
from inspect import isawaitable, stack, getmodulename
from multiprocessing import Process, Event
@ -219,11 +220,8 @@ class Sanic:
# -------------------------------------------- #
if self.debug:
error_body = response.body
if isinstance(error_body, bytes):
try:
with suppress(Exception):
error_body = error_body.decode()
except:
pass
log.debug(error_body)
try: