diff options
author | Jeroen <vo.jeroen@gmail.com> | 2018-06-25 12:31:16 +0200 |
---|---|---|
committer | Jeroen <vo.jeroen@gmail.com> | 2018-06-25 12:31:16 +0200 |
commit | 07b4f88de9ee534629db29aa4fc398607e7d866e (patch) | |
tree | d59cfabe4decd1c260fb6864f6fc897bad6aceda /synapse/config | |
parent | send SNI for federation requests (diff) | |
download | synapse-07b4f88de9ee534629db29aa4fc398607e7d866e.tar.xz |
formatting changes for pep8
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/tls.py | 4 |
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. |