From f6d97b3060bb555417bec01003346dc722da653d Mon Sep 17 00:00:00 2001 From: Aleksei Gusev Date: Sun, 9 Feb 2025 01:10:36 +0300 Subject: [PATCH] fix warning --- yt_dlp/extractor/redbulltv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/redbulltv.py b/yt_dlp/extractor/redbulltv.py index c17dfcb8ad..a265a07f9b 100644 --- a/yt_dlp/extractor/redbulltv.py +++ b/yt_dlp/extractor/redbulltv.py @@ -68,7 +68,7 @@ class RedBullTVIE(InfoExtractor): headers={'Authorization': token}, ) except ExtractorError as e: - self.to_screen(f'Downloading video information failed, {e.cause.response.read().decode()}') + self.report_warning(f'Downloading video information failed, {e.cause.response.read().decode()}') title = (video.get('title') or 'title').strip()