Skip to content

Commit

Permalink
Update Vimeo Info Extractor to get pull in the description properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Daniels authored and phihag committed Dec 20, 2012
1 parent 43e8faf commit 0dcfb23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/InfoExtractors.py
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,7 @@ def _real_extract(self, url, new_video=True):
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 = ''

Expand Down

0 comments on commit 0dcfb23

Please sign in to comment.