aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-04-11 10:56:01 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-04-11 10:56:01 +0200
commit72ca05016dbeae805826a9245e31c0652239405e (patch)
tree30733aa06be9aca4c6e7e9d97c693a697e21d6dd
parent844d1f9fa199395b6ae6abd50c50859c9fd524e3 (diff)
parentdc36bc943499e42fac7873bc55ab573eb573e25d (diff)
downloadyoutube-dl-72ca05016dbeae805826a9245e31c0652239405e.tar.xz
Merge remote-tracking branch 'sagittarian/vimeo-no-desc'
-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 51aca5497..080730660 100755
--- a/youtube_dl/InfoExtractors.py
+++ b/youtube_dl/InfoExtractors.py
@@ -1130,7 +1130,7 @@ class VimeoIE(InfoExtractor):
# Extract video description
video_description = get_element_by_attribute("itemprop", "description", webpage)
if video_description: video_description = clean_html(video_description)
- else: video_description = ''
+ else: video_description = u''
# Extract upload date
video_upload_date = None