summary refs log tree commit diff
path: root/synapse/http/client.py
diff options
context:
space:
mode:
authorDaniel Wagner-Hall <daniel@matrix.org>2015-09-09 13:05:00 +0100
committerDaniel Wagner-Hall <daniel@matrix.org>2015-09-09 13:05:00 +0100
commit6485f03d91a5f96da28f9dcc8e9ebc3adb213f6f (patch)
tree27f9ec8af9c195fda68d9aa6ee9104808d345b12 /synapse/http/client.py
parentAllow configuration to ignore invalid SSL certs (diff)
downloadsynapse-6485f03d91a5f96da28f9dcc8e9ebc3adb213f6f.tar.xz
Fix random formatting
Diffstat (limited to 'synapse/http/client.py')
-rw-r--r--synapse/http/client.py3
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)