diff options
author | Ruben Pollan <meskio@sindominio.net> | 2015-11-12 19:34:38 +0100 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2015-11-12 21:44:49 +0100 |
commit | e80d3d3d93fd3aeeffba7a5b6a05569695fc0f6e (patch) | |
tree | 7f6076c0169d0fbcdaa541a7ad1e8200cfc20ffe | |
parent | e5796bf55e3db177ee567118519136fd96ada3c4 (diff) |
[style] fix pep8
-rw-r--r-- | src/leap/common/certs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/common/certs.py b/src/leap/common/certs.py index c49015a..95704a6 100644 --- a/src/leap/common/certs.py +++ b/src/leap/common/certs.py @@ -192,8 +192,8 @@ def get_compatible_ssl_context_factory(cert_path=None): class WebClientContextFactory(ssl.ClientContextFactory): """ - A web context factory which ignores the hostname and port and does no - certificate verification. + A web context factory which ignores the hostname and port and does + no certificate verification. """ def getContext(self, hostname, port): return ssl.ClientContextFactory.getContext(self) |