mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-03 22:47:06 -05:00 
			
		
		
		
	Allow unsetting the proxy with the --proxy option
This commit is contained in:
		@@ -392,8 +392,11 @@ def _real_main(argv=None):
 | 
			
		||||
 | 
			
		||||
    # General configuration
 | 
			
		||||
    cookie_processor = compat_urllib_request.HTTPCookieProcessor(jar)
 | 
			
		||||
    if opts.proxy:
 | 
			
		||||
        proxies = {'http': opts.proxy, 'https': opts.proxy}
 | 
			
		||||
    if opts.proxy is not None:
 | 
			
		||||
        if opts.proxy == '':
 | 
			
		||||
            proxies = {}
 | 
			
		||||
        else:
 | 
			
		||||
            proxies = {'http': opts.proxy, 'https': opts.proxy}
 | 
			
		||||
    else:
 | 
			
		||||
        proxies = compat_urllib_request.getproxies()
 | 
			
		||||
        # Set HTTPS proxy to HTTP one if given (https://github.com/rg3/youtube-dl/issues/805)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user