1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-29 23:29:38 +00:00

[utils] Save orig_msg in ExtractorError

This commit is contained in:
dirkf 2024-06-19 19:04:47 +01:00
parent 0153b387e5
commit 2eac0fa379

View file

@ -2406,7 +2406,7 @@ class ExtractorError(YoutubeDLError):
""" tb, if given, is the original traceback (so that it can be printed out). """ tb, if given, is the original traceback (so that it can be printed out).
If expected is set, this is a normal error message and most likely not a bug in youtube-dl. If expected is set, this is a normal error message and most likely not a bug in youtube-dl.
""" """
self.orig_msg = msg
if sys.exc_info()[0] in (compat_urllib_error.URLError, socket.timeout, UnavailableVideoError): if sys.exc_info()[0] in (compat_urllib_error.URLError, socket.timeout, UnavailableVideoError):
expected = True expected = True
if video_id is not None: if video_id is not None: