diff options
author | Jonathan de Jong <jonathan@automatia.nl> | 2021-03-24 14:34:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-24 09:34:30 -0400 |
commit | 4c3827f2c18180533b804ebd4d8f5cb90774244b (patch) | |
tree | 5a655fea7a1aeb307e09787f73a29db8918a0a64 /synapse/crypto | |
parent | Spaces summary: call out to other servers (#9653) (diff) | |
download | synapse-4c3827f2c18180533b804ebd4d8f5cb90774244b.tar.xz |
Enable addtional flake8-bugbear linting checks. (#9659)
Diffstat (limited to 'synapse/crypto')
-rw-r--r-- | synapse/crypto/context_factory.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/crypto/context_factory.py b/synapse/crypto/context_factory.py index 4ca13011e5..c644b4dfc5 100644 --- a/synapse/crypto/context_factory.py +++ b/synapse/crypto/context_factory.py @@ -191,7 +191,7 @@ def _context_info_cb(ssl_connection, where, ret): # ... we further assume that SSLClientConnectionCreator has set the # '_synapse_tls_verifier' attribute to a ConnectionVerifier object. tls_protocol._synapse_tls_verifier.verify_context_info_cb(ssl_connection, where) - except: # noqa: E722, taken from the twisted implementation + except BaseException: # taken from the twisted implementation logger.exception("Error during info_callback") f = Failure() tls_protocol.failVerification(f) |