Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Commit bc0738b

Browse files
Fix indentation.
1 parent 60fb2f3 commit bc0738b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hyper/tls.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ def init_context(cert_path=None, cert=None, cert_password=None):
100100
cafile = cert_path or cert_loc
101101
if not cafile or not path.exists(cafile):
102102
err_msg = ("No certificate found at " + str(cafile) + ". Either " +
103-
"ensure the default cert.pem file is included in the " +
104-
"distribution or provide a custom certificate when " +
105-
"creating the connection.")
103+
"ensure the default cert.pem file is included in the " +
104+
"distribution or provide a custom certificate when " +
105+
"creating the connection.")
106106
raise MissingCertFile(err_msg)
107107

108108
context = ssl.SSLContext(ssl.PROTOCOL_SSLv23)

0 commit comments

Comments
 (0)