Fix a mistake, https proxy shoud be https://

This commit is contained in:
Senthil Kumaran 2010-07-14 20:10:52 +00:00
parent e4004a653c
commit 04f31b8ae6
1 changed files with 1 additions and 1 deletions

View File

@ -2279,7 +2279,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):