From: Senthil Kumaran Date: Wed, 14 Jul 2010 20:13:28 +0000 (+0000) Subject: Merged revisions 82895 via svnmerge from X-Git-Tag: v3.1.3rc1~503 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1ea57a6c5f3a78dd28349dbb58639385cc53788a;p=python Merged revisions 82895 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82895 | senthil.kumaran | 2010-07-15 01:40:52 +0530 (Thu, 15 Jul 2010) | 3 lines Fix a mistake, https proxy shoud be https:// ........ --- diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py index 9fa09cde24..14ea0aad5e 100644 --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -2283,7 +2283,7 @@ elif os.name == 'nt': proxies['http'] = proxyServer else: proxies['http'] = 'http://%s' % proxyServer - proxies['https'] = 'http://%s' % proxyServer + proxies['https'] = 'https://%s' % proxyServer proxies['ftp'] = 'ftp://%s' % proxyServer internetSettings.Close() except (WindowsError, ValueError, TypeError):