diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2000-09-21 22:09:47 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2000-09-21 22:09:47 (GMT) |
commit | d7bf974af4f5ddb2f1b0eee1c5bb8df5ceeb3d48 (patch) | |
tree | ee48c01e065095f633ff0bc663b9cc7a670f80de /Lib/httplib.py | |
parent | d68442b1642d769970a52c6d0f51b9039c1e7482 (diff) | |
download | cpython-d7bf974af4f5ddb2f1b0eee1c5bb8df5ceeb3d48.zip cpython-d7bf974af4f5ddb2f1b0eee1c5bb8df5ceeb3d48.tar.gz cpython-d7bf974af4f5ddb2f1b0eee1c5bb8df5ceeb3d48.tar.bz2 |
Indent _connection_class so that it becomes HTTPS._connection_class.
Diffstat (limited to 'Lib/httplib.py')
-rw-r--r-- | Lib/httplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/httplib.py b/Lib/httplib.py index 0688fa8..3856854 100644 --- a/Lib/httplib.py +++ b/Lib/httplib.py @@ -711,7 +711,7 @@ if hasattr(socket, 'ssl'): https. """ - _connection_class = HTTPSConnection + _connection_class = HTTPSConnection class HTTPException(Exception): |