0
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-11-27 03:03:01 +00:00

[spankbang] Fix title extraction (Closes #8329)

This commit is contained in:
Sergey M․ 2016-01-27 21:49:56 +06:00
parent 9339774af2
commit c3111ab34f

View file

@ -38,7 +38,7 @@ def _real_extract(self, url):
self._sort_formats(formats)
title = self._html_search_regex(
r'(?s)<h1>(.+?)</h1>', webpage, 'title')
r'(?s)<h1[^>]*>(.+?)</h1>', webpage, 'title')
description = self._search_regex(
r'class="desc"[^>]*>([^<]+)',
webpage, 'description', default=None)