summary refs log tree commit diff
path: root/synapse/crypto/context_factory.py
diff options
context:
space:
mode:
authorJeroen <vo.jeroen@gmail.com>2018-08-08 19:25:01 +0200
committerJeroen <vo.jeroen@gmail.com>2018-08-08 19:25:01 +0200
commitd5c0ce4cadb4848da174bf5a5563de0ebba4790f (patch)
tree61d2b98f845ce265419e3936b755344b2c96b8b8 /synapse/crypto/context_factory.py
parentfix isort (diff)
downloadsynapse-d5c0ce4cadb4848da174bf5a5563de0ebba4790f.tar.xz
updated docstring for ServerContextFactory
Diffstat (limited to 'synapse/crypto/context_factory.py')
-rw-r--r--synapse/crypto/context_factory.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/crypto/context_factory.py b/synapse/crypto/context_factory.py

index 569377e653..29a75e1873 100644 --- a/synapse/crypto/context_factory.py +++ b/synapse/crypto/context_factory.py
@@ -26,7 +26,7 @@ logger = logging.getLogger(__name__) class ServerContextFactory(ContextFactory): """Factory for PyOpenSSL SSL contexts that are used to handle incoming - connections and to make connections to remote servers.""" + connections.""" def __init__(self, config): self._context = SSL.Context(SSL.SSLv23_METHOD)