commit | 8ce1f1ff83bf2521fc0f98a45aeb5904c69a1286 | [log] [tgz] |
---|---|---|
author | Senthil Kumaran <orsenthil@gmail.com> | Thu Nov 18 15:00:53 2010 +0000 |
committer | Senthil Kumaran <orsenthil@gmail.com> | Thu Nov 18 15:00:53 2010 +0000 |
tree | b2b52d32525f7fb97ff3208ee65431c5de68e16e | |
parent | b10089edbac3ab301f5b974cd7bb6a878bbb0bf0 [diff] [blame] |
Fix Issue 9991: xmlrpc client ssl check faulty
diff --git a/Lib/xmlrpc/client.py b/Lib/xmlrpc/client.py index d9c43c2..b855965 100644 --- a/Lib/xmlrpc/client.py +++ b/Lib/xmlrpc/client.py
@@ -1330,7 +1330,7 @@ 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