aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Daniels <nick.daniels@forward.co.uk>2012-12-19 14:21:39 +0000
committerPhilipp Hagemeister <phihag@phihag.de>2012-12-20 13:27:44 +0100
commit0dcfb234ed209e90fde20cf299483457caf49b36 (patch)
tree2c6810bed2adef541111cbb8cf156dfdf89a560e
parent43e8fafd49f94ebf4776c84697e4b815750ec701 (diff)
downloadyoutube-dl-0dcfb234ed209e90fde20cf299483457caf49b36.tar.xz
Update Vimeo Info Extractor to get pull in the description properly
-rwxr-xr-xyoutube_dl/InfoExtractors.py2
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 = ''