From 679587dac7cd011a1472255e1f06efb017ba91b6 Mon Sep 17 00:00:00 2001 From: bashonly <88596187+bashonly@users.noreply.github.com> Date: Wed, 10 Sep 2025 13:39:07 -0500 Subject: [PATCH] [ie/vimeo] Fix login error handling (#14280) Closes #14279 Authored by: bashonly --- yt_dlp/extractor/vimeo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/vimeo.py b/yt_dlp/extractor/vimeo.py index ce3f441be7..67cda74292 100644 --- a/yt_dlp/extractor/vimeo.py +++ b/yt_dlp/extractor/vimeo.py @@ -151,7 +151,7 @@ class VimeoBaseInfoExtractor(InfoExtractor): 'Referer': self._LOGIN_URL, }) except ExtractorError as e: - if isinstance(e.cause, HTTPError) and e.cause.status in (405, 418): + if isinstance(e.cause, HTTPError) and e.cause.status in (404, 405, 418): raise ExtractorError( 'Unable to log in: bad username or password', expected=True)