diff options
author | Nick Daniels <nick.daniels@forward.co.uk> | 2012-12-19 14:21:39 +0000 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2012-12-20 13:27:44 +0100 |
commit | 0dcfb234ed209e90fde20cf299483457caf49b36 (patch) | |
tree | 2c6810bed2adef541111cbb8cf156dfdf89a560e /youtube_dl/InfoExtractors.py | |
parent | 43e8fafd49f94ebf4776c84697e4b815750ec701 (diff) |
Update Vimeo Info Extractor to get pull in the description properly
Diffstat (limited to 'youtube_dl/InfoExtractors.py')
-rwxr-xr-x | youtube_dl/InfoExtractors.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 = '' |