summaryrefslogtreecommitdiffstats
path: root/Lib/urllib/request.py
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2011-11-01 15:57:57 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2011-11-01 15:57:57 (GMT)
commit4c875a986fbbd51774dbc87b742e6e71b57eef58 (patch)
treedcf985ae2653633eed59c0035ca08b6541ad4baa /Lib/urllib/request.py
parent0d54eb9bdcf16baf8a1fb31ae69dd0d935ae1df4 (diff)
downloadcpython-4c875a986fbbd51774dbc87b742e6e71b57eef58.zip
cpython-4c875a986fbbd51774dbc87b742e6e71b57eef58.tar.gz
cpython-4c875a986fbbd51774dbc87b742e6e71b57eef58.tar.bz2
'HTTPSHandler' and not the type.
Diffstat (limited to 'Lib/urllib/request.py')
-rw-r--r--Lib/urllib/request.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py
index d360966..3a472f2 100644
--- a/Lib/urllib/request.py
+++ b/Lib/urllib/request.py
@@ -1200,7 +1200,7 @@ if hasattr(http.client, 'HTTPSConnection'):
https_request = AbstractHTTPHandler.do_request_
- __all__.append(HTTPSHandler)
+ __all__.append('HTTPSHandler')
class HTTPCookieProcessor(BaseHandler):
def __init__(self, cookiejar=None):