logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: fe348844d9586ab7c19514f33a4bf2995152959e
parent 767e00277f379410288476ecd05622968eec1d1b
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date:   Mon, 29 Apr 2013 23:57:36 +0200

SoundcloudSetIE: Use upload_date in the unified format (fixes #812)

Diffstat:

Myoutube_dl/InfoExtractors.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py @@ -2768,7 +2768,7 @@ class SoundcloudSetIE(InfoExtractor): 'id': video_id, 'url': mediaURL, 'uploader': track['user']['username'], - 'upload_date': track['created_at'], + 'upload_date': unified_strdate(track['created_at']), 'title': track['title'], 'ext': u'mp3', 'description': track['description'],