diff options
author | Erik Johnston <erik@matrix.org> | 2015-07-09 11:47:24 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-07-09 11:47:24 +0100 |
commit | 294dbd712fee435489fe6e9f9942bd9c39fd480c (patch) | |
tree | 3f0a0bc5f0d62ffbda7f9018765bced30de8652e /synapse/config | |
parent | remove the tls_certificate_chain_path param and simply support tls_certificat... (diff) | |
download | synapse-294dbd712fee435489fe6e9f9942bd9c39fd480c.tar.xz |
We don't want semicolons.
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/tls.py | 2 |
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) |