From 94ac04c2c9b0fe2bf25e4ba5ba9a9dc6b5e8ae88 Mon Sep 17 00:00:00 2001 From: Simon Sawicki Date: Thu, 7 Aug 2025 20:50:19 -0700 Subject: [PATCH] Broaden error recognition --- yt_dlp/extractor/motherless.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/motherless.py b/yt_dlp/extractor/motherless.py index 1d3f2614b5..cad5aa085a 100644 --- a/yt_dlp/extractor/motherless.py +++ b/yt_dlp/extractor/motherless.py @@ -99,7 +99,7 @@ class MotherlessIE(InfoExtractor): if any(p in webpage for p in ( '404 - MOTHERLESS.COM<', ">The page you're looking for cannot be found.<", - '<div class="error-page view-page py-3">', + '<div class="error-page', )): raise ExtractorError(f'Video {video_id} does not exist', expected=True)