From e4004a653cd088dbf820a3535fbd8dd4d13727bd Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Wed, 14 Jul 2010 19:15:23 +0000 Subject: Fix: Issue6853 - Get HTTPS system proxy in Windows. --- Lib/urllib/request.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py index c6767d0..a2b439c 100644 --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -2279,6 +2279,7 @@ elif os.name == 'nt': proxies['http'] = proxyServer else: proxies['http'] = 'http://%s' % proxyServer + proxies['https'] = 'http://%s' % proxyServer proxies['ftp'] = 'ftp://%s' % proxyServer internetSettings.Close() except (WindowsError, ValueError, TypeError): -- cgit v0.12