From 92dde77016847a6f5baaee1dc757613f31e05c88 Mon Sep 17 00:00:00 2001 From: JChris246 Date: Tue, 30 Jun 2020 00:30:14 -0400 Subject: [PATCH] Fixed title extraction --- youtube_dl/extractor/porn91.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youtube_dl/extractor/porn91.py b/youtube_dl/extractor/porn91.py index 20eac647a..638456135 100644 --- a/youtube_dl/extractor/porn91.py +++ b/youtube_dl/extractor/porn91.py @@ -36,8 +36,8 @@ class Porn91IE(InfoExtractor): raise ExtractorError('91 Porn says: Daily limit 10 videos exceeded', expected=True) title = self._search_regex( - r'
([^<]+)
', webpage, 'title') - title = title.replace('\n', '') + r'

]+>([^<]+)

', webpage, 'title') + title = title.strip() video_link_url = self._search_regex( r']+id=["\']fm-video_link[^>]+>([^<]+)',