summary refs log tree commit diff
path: root/synapse/config
diff options
context:
space:
mode:
authorJeroen <vo.jeroen@gmail.com>2018-06-25 12:31:16 +0200
committerJeroen <vo.jeroen@gmail.com>2018-06-25 12:31:16 +0200
commit07b4f88de9ee534629db29aa4fc398607e7d866e (patch)
treed59cfabe4decd1c260fb6864f6fc897bad6aceda /synapse/config
parentsend SNI for federation requests (diff)
downloadsynapse-07b4f88de9ee534629db29aa4fc398607e7d866e.tar.xz
formatting changes for pep8
Diffstat (limited to 'synapse/config')
-rw-r--r--synapse/config/tls.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/config/tls.py b/synapse/config/tls.py
index 4e7d1bd93e..b09dc986ab 100644
--- a/synapse/config/tls.py
+++ b/synapse/config/tls.py
@@ -47,7 +47,9 @@ class TlsConfig(Config):
 
         self.tls_fingerprints = config["tls_fingerprints"]
 
-        self.tls_ignore_certificate_validation = config.get("tls_ignore_certificate_validation", False)
+        self.tls_ignore_certificate_validation = config.get(
+            "tls_ignore_certificate_validation", False
+        )
 
         # Check that our own certificate is included in the list of fingerprints
         # and include it if it is not.