mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[cookies] Fix compatibility for Python <=3.9 in traceback
Authored by: Grub4K
This commit is contained in:
		| @@ -4120,7 +4120,8 @@ class YoutubeDL: | ||||
|                 self.params.get('cookiefile'), self.params.get('cookiesfrombrowser'), self) | ||||
|         except CookieLoadError as error: | ||||
|             cause = error.__context__ | ||||
|             self.report_error(str(cause), tb=''.join(traceback.format_exception(cause))) | ||||
|             # compat: <=py3.9: `traceback.format_exception` has a different signature | ||||
|             self.report_error(str(cause), tb=''.join(traceback.format_exception(None, cause, cause.__traceback__))) | ||||
|             raise | ||||
| 
 | ||||
|     @property | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Simon Sawicki
					Simon Sawicki