summary refs log tree commit diff
path: root/synapse/config/tls.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-07-09 11:47:24 +0100
committerErik Johnston <erik@matrix.org>2015-07-09 11:47:24 +0100
commit294dbd712fee435489fe6e9f9942bd9c39fd480c (patch)
tree3f0a0bc5f0d62ffbda7f9018765bced30de8652e /synapse/config/tls.py
parentremove the tls_certificate_chain_path param and simply support tls_certificat... (diff)
downloadsynapse-294dbd712fee435489fe6e9f9942bd9c39fd480c.tar.xz
We don't want semicolons.
Diffstat (limited to 'synapse/config/tls.py')
-rw-r--r--synapse/config/tls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/tls.py b/synapse/config/tls.py
index e136d13713..6c1df35e80 100644
--- a/synapse/config/tls.py
+++ b/synapse/config/tls.py
@@ -27,7 +27,7 @@ class TlsConfig(Config):
         self.tls_certificate = self.read_tls_certificate(
             config.get("tls_certificate_path")
         )
-        self.tls_certificate_file = config.get("tls_certificate_path");
+        self.tls_certificate_file = config.get("tls_certificate_path")
 
         self.no_tls = config.get("no_tls", False)