diff --git a/Lib/urllib.py b/Lib/urllib.py index d5d576011e1..042b4d82f8b 100644 --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -1448,7 +1448,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):