mirror of https://github.com/python/cpython
Merged revisions 82897 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/release27-maint ................ r82897 | senthil.kumaran | 2010-07-15 01:52:17 +0530 (Thu, 15 Jul 2010) | 9 lines 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:// ........ ................
This commit is contained in:
parent
7a4e837943
commit
73ae8dde6f
|
@ -1448,7 +1448,7 @@ elif os.name == 'nt':
|
||||||
proxies['http'] = proxyServer
|
proxies['http'] = proxyServer
|
||||||
else:
|
else:
|
||||||
proxies['http'] = 'http://%s' % proxyServer
|
proxies['http'] = 'http://%s' % proxyServer
|
||||||
proxies['https'] = 'http://%s' % proxyServer
|
proxies['https'] = 'https://%s' % proxyServer
|
||||||
proxies['ftp'] = 'ftp://%s' % proxyServer
|
proxies['ftp'] = 'ftp://%s' % proxyServer
|
||||||
internetSettings.Close()
|
internetSettings.Close()
|
||||||
except (WindowsError, ValueError, TypeError):
|
except (WindowsError, ValueError, TypeError):
|
||||||
|
|
Loading…
Reference in New Issue