Skip to content
Snippets Groups Projects
Commit 294dbd71 authored by Erik Johnston's avatar Erik Johnston
Browse files

We don't want semicolons.

parent fb8d2862
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,7 @@ class TlsConfig(Config): ...@@ -27,7 +27,7 @@ class TlsConfig(Config):
self.tls_certificate = self.read_tls_certificate( self.tls_certificate = self.read_tls_certificate(
config.get("tls_certificate_path") 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) self.no_tls = config.get("no_tls", False)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment