[Python-checkins] r74543 - python/trunk/Lib/xmlrpclib.py

kristjan.jonsson python-checkins at python.org
Mon Aug 24 13:39:31 CEST 2009


Author: kristjan.jonsson
Date: Mon Aug 24 13:39:31 2009
New Revision: 74543

Log:
issue 6769
fix a mistake in instantiatiating the HTTPSConnection class.

Modified:
   python/trunk/Lib/xmlrpclib.py

Modified: python/trunk/Lib/xmlrpclib.py
==============================================================================
--- python/trunk/Lib/xmlrpclib.py	(original)
+++ python/trunk/Lib/xmlrpclib.py	Mon Aug 24 13:39:31 2009
@@ -1488,7 +1488,7 @@
                 )
         else:
             chost, self._extra_headers, x509 = self.get_host_info(host)
-            self._connection = host, HTTPSConnection(chost, None, **(x509 or {}))
+            self._connection = host, HTTPS(chost, None, **(x509 or {}))
             return self._connection[1]
 
 ##


More information about the Python-checkins mailing list