mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	Fix list comprehension for decoding the URLs (fixes #2100)
It wasn’t a comprehension, it was just using the last url from the previous comprehension. That didn’t raise an error in python 2, but in python 3 the variable was not defined.
This commit is contained in:
		| @@ -523,7 +523,7 @@ def _real_main(argv=None): | |||||||
|     all_urls = batchurls + args |     all_urls = batchurls + args | ||||||
|     all_urls = [url.strip() for url in all_urls] |     all_urls = [url.strip() for url in all_urls] | ||||||
|     _enc = preferredencoding() |     _enc = preferredencoding() | ||||||
|     all_urls = [url.decode(_enc, 'ignore') if isinstance(url, bytes) else url] |     all_urls = [url.decode(_enc, 'ignore') if isinstance(url, bytes) else url for url in all_urls] | ||||||
|  |  | ||||||
|     extractors = gen_extractors() |     extractors = gen_extractors() | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user