mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 05:02:33 +01:00
Fix bug when the vimeo description is empty on Python 2.x.
This commit is contained in:
parent
43ff1a347d
commit
dc36bc9434
@ -1130,7 +1130,7 @@ def _real_extract(self, url, new_video=True):
|
|||||||
# Extract video description
|
# Extract video description
|
||||||
video_description = get_element_by_attribute("itemprop", "description", webpage)
|
video_description = get_element_by_attribute("itemprop", "description", webpage)
|
||||||
if video_description: video_description = clean_html(video_description)
|
if video_description: video_description = clean_html(video_description)
|
||||||
else: video_description = ''
|
else: video_description = u''
|
||||||
|
|
||||||
# Extract upload date
|
# Extract upload date
|
||||||
video_upload_date = None
|
video_upload_date = None
|
||||||
|
Loading…
Reference in New Issue
Block a user