diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2019-04-02 13:18:49 +0100 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2019-04-02 13:18:49 +0100 |
commit | 3e29d458f277d3414bc4b6b695da4695f351c08c (patch) | |
tree | 2a4046030b2c8a0ee4ba8d38214080f98fef3799 | |
parent | isort (diff) | |
download | synapse-3e29d458f277d3414bc4b6b695da4695f351c08c.tar.xz |
isort
-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 a236d4896b..db2fbb4097 100644 --- a/synapse/crypto/context_factory.py +++ b/synapse/crypto/context_factory.py @@ -18,10 +18,10 @@ import logging from zope.interface import implementer from OpenSSL import SSL, crypto +from twisted.internet._sslverify import OpenSSLCertificateAuthorities, _defaultCurveName from twisted.internet.abstract import isIPAddress, isIPv6Address from twisted.internet.interfaces import IOpenSSLClientConnectionCreator from twisted.internet.ssl import CertificateOptions, ContextFactory, platformTrust -from twisted.internet._sslverify import OpenSSLCertificateAuthorities, _defaultCurveName from twisted.python.failure import Failure logger = logging.getLogger(__name__) |