diff options
author | Matthew Hodgson <matthew@matrix.org> | 2015-07-08 18:53:41 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2015-07-08 18:53:41 +0100 |
commit | 19fa3731aee498159cbc475f8b29f66dacb6aba6 (patch) | |
tree | c077d7e2388d260907b9a8ffd7a16cc16b7decbb /synapse/crypto | |
parent | *cough* (diff) | |
download | synapse-19fa3731aee498159cbc475f8b29f66dacb6aba6.tar.xz |
typo
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 ea5dd1e7d3..324dc31fe4 100644 --- a/synapse/crypto/context_factory.py +++ b/synapse/crypto/context_factory.py @@ -35,7 +35,7 @@ class ServerContextFactory(ssl.ContextFactory): _ecCurve = _OpenSSLECCurve(_defaultCurveName) _ecCurve.addECKeyToContext(context) except: - logger.exception("Failed to enable eliptic curve for TLS") + logger.exception("Failed to enable elliptic curve for TLS") context.set_options(SSL.OP_NO_SSLv2 | SSL.OP_NO_SSLv3) context.use_certificate(config.tls_certificate) if config.tls_certificate_chain: |