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

Commit a9dd05d

Browse files
E128 Fix alignment of line continuation.
1 parent 8120e73 commit a9dd05d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

hyper/tls.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,9 @@ def init_context(cert_path=None, cert=None, cert_password=None):
9999
cafile = cert_path or cert_loc
100100
if not cafile or not path.exists(cafile):
101101
errMsg = ("No certificate found at " + str(cafile) + ". Either " +
102-
"ensure the default cert.pem file is included in the distribution " +
103-
"or provide a custom certificate when creating the connection.")
102+
"ensure the default cert.pem file is included in the " +
103+
"distribution or provide a custom certificate when " +
104+
"creating the connection.")
104105
raise Exception(errMsg)
105106

106107
context = ssl.SSLContext(ssl.PROTOCOL_SSLv23)

0 commit comments

Comments
 (0)