Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1ea57a6

Browse files
committed
Merged revisions 82895 via svnmerge from
svn+ssh://[email protected]/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:// ........
1 parent 99f9bd1 commit 1ea57a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/urllib/request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2283,7 +2283,7 @@ def getproxies_registry():
22832283
proxies['http'] = proxyServer
22842284
else:
22852285
proxies['http'] = 'http://%s' % proxyServer
2286-
proxies['https'] = 'http://%s' % proxyServer
2286+
proxies['https'] = 'https://%s' % proxyServer
22872287
proxies['ftp'] = 'ftp://%s' % proxyServer
22882288
internetSettings.Close()
22892289
except (WindowsError, ValueError, TypeError):

0 commit comments

Comments
 (0)