From 82a4c500e7a2509ec8dbef77b76bbf8a9120c6d1 Mon Sep 17 00:00:00 2001 From: Paul Storkman Date: Tue, 7 Jan 2025 14:11:10 +0100 Subject: [PATCH] Clean up unused exception binding. --- yt_dlp/YoutubeDL.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index ed4fac7dc..ab58c1501 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -1692,7 +1692,7 @@ def progress(msg): except KeyboardInterrupt: progress('') self.to_screen('[wait] Interrupted by user') - except BaseException as e: + except BaseException: self.to_screen('') raise