From: Nick Daniels Date: Wed, 19 Dec 2012 14:21:39 +0000 (+0000) Subject: Update Vimeo Info Extractor to get pull in the description properly X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=0dcfb234ed209e90fde20cf299483457caf49b36;hp=43e8fafd49f94ebf4776c84697e4b815750ec701;p=youtube-dl Update Vimeo Info Extractor to get pull in the description properly --- diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index 9a41dde57..cf5b51bd8 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -999,7 +999,7 @@ class VimeoIE(InfoExtractor): video_thumbnail = config["video"]["thumbnail"] # Extract video description - video_description = get_element_by_id("description", webpage) + video_description = get_element_by_attribute("itemprop", "description", webpage) if video_description: video_description = clean_html(video_description) else: video_description = ''