diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py index c6767d0b266..a2b439cb6e0 100644 --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -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):