youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 72ca05016dbeae805826a9245e31c0652239405e
parent 844d1f9fa199395b6ae6abd50c50859c9fd524e3
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu, 11 Apr 2013 10:56:01 +0200

Merge remote-tracking branch 'sagittarian/vimeo-no-desc'

Diffstat:
Myoutube_dl/InfoExtractors.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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