From: pukkandan Date: Thu, 4 Aug 2022 14:48:29 +0000 (+0530) Subject: Fix bug in be5c1ae86202be54225d376756f5d9f0bf8f392a X-Git-Tag: 2022.08.08~24 X-Git-Url: https://jfr.im/git/yt-dlp.git/commitdiff_plain/05e2243e8032061f300c00ca62999b6b29e1ed8f Fix bug in be5c1ae86202be54225d376756f5d9f0bf8f392a --- diff --git a/yt_dlp/utils.py b/yt_dlp/utils.py index d405ed3e3..c56f31013 100644 --- a/yt_dlp/utils.py +++ b/yt_dlp/utils.py @@ -5739,7 +5739,7 @@ def report_retry(e, count, retries, *, sleep_func, info, warn, error=None, suffi if not count: return warn(e) elif isinstance(e, ExtractorError): - e = remove_end(e.cause or e.orig_msg, '.') + e = remove_end(str(e.cause) or e.orig_msg, '.') warn(f'{e}. Retrying{format_field(suffix, None, " %s")} ({count}/{retries})...') delay = float_or_none(sleep_func(n=count - 1)) if callable(sleep_func) else sleep_func