From c3f3a45b7d9d1238f0d2d5d7a68b6fca206c494c Mon Sep 17 00:00:00 2001 From: JChris246 Date: Tue, 30 Jun 2020 20:38:17 -0400 Subject: [PATCH] Changed regex which will grab 1 result for title and replaced old pattern --- youtube_dl/extractor/porn91.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/youtube_dl/extractor/porn91.py b/youtube_dl/extractor/porn91.py index 638456135..d2172d866 100644 --- a/youtube_dl/extractor/porn91.py +++ b/youtube_dl/extractor/porn91.py @@ -36,7 +36,11 @@ class Porn91IE(InfoExtractor): raise ExtractorError('91 Porn says: Daily limit 10 videos exceeded', expected=True) title = self._search_regex( - r'

]+>([^<]+)

', webpage, 'title') + [ + r'
([^<]+)
', + r'([^\n]+)', + ], webpage, 'title' + ) title = title.strip() video_link_url = self._search_regex(