mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 22:55:18 +00:00 
			
		
		
		
	Handle BrokenPipeError
				
					
				
			PR: https://github.com/ytdl-org/youtube-dl/pull/29505 Fixes: https://github.com/ytdl-org/youtube-dl/issues/29082 Authored by: kikuyan
This commit is contained in:
		| @@ -734,6 +734,11 @@ def main(argv=None): | ||||
|         sys.exit('ERROR: fixed output name but more than one file to download') | ||||
|     except KeyboardInterrupt: | ||||
|         sys.exit('\nERROR: Interrupted by user') | ||||
|     except BrokenPipeError: | ||||
|         # https://docs.python.org/3/library/signal.html#note-on-sigpipe | ||||
|         devnull = os.open(os.devnull, os.O_WRONLY) | ||||
|         os.dup2(devnull, sys.stdout.fileno()) | ||||
|         sys.exit(r'\nERROR: {err}') | ||||
|  | ||||
|  | ||||
| __all__ = ['main', 'YoutubeDL', 'gen_extractors', 'list_extractors'] | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan