From ae918c4b33b216a04f7277ed49421e29eec71d40 Mon Sep 17 00:00:00 2001 From: coletdjnz Date: Mon, 21 Apr 2025 12:04:36 +1200 Subject: [PATCH] typo --- yt_dlp/extractor/youtube/_video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/youtube/_video.py b/yt_dlp/extractor/youtube/_video.py index 2b0c11e054..c8baba867d 100644 --- a/yt_dlp/extractor/youtube/_video.py +++ b/yt_dlp/extractor/youtube/_video.py @@ -3651,7 +3651,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor): elif "This content isn't available, try again later" in reason: reason = ( - f'{remove_end(reason.strip(), ".")}. {"Your account" if self.is_authenticated else "The current session"} has been rate-limited by YouTube for up to an hour.' + f'{remove_end(reason.strip(), ".")}. {"Your account" if self.is_authenticated else "The current session"} has been rate-limited by YouTube for up to an hour. ' 'It is recommended to use `-t sleep` to add a delay between downloads to avoid hitting the rate limit. ' 'For more information, refer to https://github.com/yt-dlp/yt-dlp/wiki/Extractors#this-content-isnt-available-try-again-later .' )