youtube-dl

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

commit feb7711cf58863a19cae770a878d22a8424e3c61
parent 589c33dadeec18a9d50713a4a200e3e2d9e297bb
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 25 Oct 2015 23:01:12 +0600

[youporn] Make description optional

Some videos does not contain any description

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

diff --git a/youtube_dl/extractor/youporn.py b/youtube_dl/extractor/youporn.py @@ -92,7 +92,7 @@ class YouPornIE(InfoExtractor): description = self._html_search_regex( r'(?s)<div[^>]+class=["\']video-description["\'][^>]*>(.+?)</div>', - webpage, 'description', fatal=False) + webpage, 'description', default=None) thumbnail = self._search_regex( r'(?:imageurl\s*=|poster\s*:)\s*(["\'])(?P<thumbnail>.+?)\1', webpage, 'thumbnail', fatal=False, group='thumbnail')