remove bare exceptions

This commit is contained in:
Raphael Deem
2017-10-25 21:58:31 -07:00
parent c2191153cf
commit 5bf722c7ae
5 changed files with 8 additions and 8 deletions

View File

@@ -588,7 +588,7 @@ def serve(host, port, request_handler, error_handler, before_start=None,
try:
http_server = loop.run_until_complete(server_coroutine)
except:
except BaseException:
logger.exception("Unable to start server")
return