Disable custom https handler for fetch_url on older pythons

Fixes #8898
This commit is contained in:
James Cammarata 2014-09-05 13:48:45 -05:00
parent f14dba8b2f
commit 8bafc646cb

View file

@ -396,7 +396,10 @@ def fetch_url(module, url, data=None, headers=None, method=None,
proxyhandler = urllib2.ProxyHandler({})
handlers.append(proxyhandler)
handlers.append(CustomHTTPSHandler)
# pre-2.6 versions of python cannot use the custom https
# handler, since the socket class is lacking this method
if hasattr(socket, 'create_connection'):
handlers.append(CustomHTTPSHandler)
opener = urllib2.build_opener(*handlers)
urllib2.install_opener(opener)