youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit c3111ab34fed3af16f645c6ee4dcd6e5d35b69dd
parent 9339774af274b04a054b0fa151347619e40b5b21
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 27 Jan 2016 21:49:56 +0600

[spankbang] Fix title extraction (Closes #8329)

Diffstat:
Myoutube_dl/extractor/spankbang.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/spankbang.py b/youtube_dl/extractor/spankbang.py @@ -38,7 +38,7 @@ class SpankBangIE(InfoExtractor): 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)