diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-11-18 15:00:53 +0000 |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-11-18 15:00:53 +0000 |
commit | 8ce1f1ff83bf2521fc0f98a45aeb5904c69a1286 (patch) | |
tree | b2b52d32525f7fb97ff3208ee65431c5de68e16e /Lib/xmlrpc/client.py | |
parent | b10089edbac3ab301f5b974cd7bb6a878bbb0bf0 (diff) | |
download | cpython-git-8ce1f1ff83bf2521fc0f98a45aeb5904c69a1286.tar.gz |
Fix Issue 9991: xmlrpc client ssl check faulty
Diffstat (limited to 'Lib/xmlrpc/client.py')
-rw-r--r-- | Lib/xmlrpc/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xmlrpc/client.py b/Lib/xmlrpc/client.py index d9c43c24b4..b8559651e8 100644 --- a/Lib/xmlrpc/client.py +++ b/Lib/xmlrpc/client.py @@ -1330,7 +1330,7 @@ class SafeTransport(Transport): if self._connection and host == self._connection[0]: return self._connection[1] - if not hasattr(socket, "ssl"): + if not hasattr(http.client, "ssl"): raise NotImplementedError( "your version of http.client doesn't support HTTPS") # create a HTTPS connection object from a host descriptor |