mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[downloader/external] Decode error string before writing to stderr
This commit is contained in:
		| @@ -85,7 +85,7 @@ class ExternalFD(FileDownloader): | |||||||
|             cmd, stderr=subprocess.PIPE) |             cmd, stderr=subprocess.PIPE) | ||||||
|         _, stderr = p.communicate() |         _, stderr = p.communicate() | ||||||
|         if p.returncode != 0: |         if p.returncode != 0: | ||||||
|             self.to_stderr(stderr) |             self.to_stderr(stderr.decode('utf-8', 'replace')) | ||||||
|         return p.returncode |         return p.returncode | ||||||
|  |  | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user