Commit 72ee7224 authored by Senthil Kumaran's avatar Senthil Kumaran

Fix: Issue6853 - Get HTTPS system proxy in Windows.

parent ffec346a
......@@ -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):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment