commit | e4004a653cd088dbf820a3535fbd8dd4d13727bd | [log] [tgz] |
---|---|---|
author | Senthil Kumaran <orsenthil@gmail.com> | Wed Jul 14 19:15:23 2010 +0000 |
committer | Senthil Kumaran <orsenthil@gmail.com> | Wed Jul 14 19:15:23 2010 +0000 |
tree | b20bedaa308eed966347f148de076111f8b86d86 | |
parent | 4988d7a3754751979e0935800bce6e642aa37430 [diff] [blame] |
Fix: Issue6853 - Get HTTPS system proxy in Windows.
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 @@ 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):