1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/http/client.py b/synapse/http/client.py
index da77c8b0ac..815a838729 100644
--- a/synapse/http/client.py
+++ b/synapse/http/client.py
@@ -265,7 +265,8 @@ class WoefullyInsecureContextFactory(ssl.ContextFactory):
"""
Factory for PyOpenSSL SSL contexts which does absolutely no certificate verification.
- Do not use this unless you really, really hate your users."""
+ Do not use this unless you really, really hate your users.
+ """
def __init__(self):
self._context = SSL.Context(SSL.SSLv23_METHOD)
|