summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-04-29 23:57:36 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-04-29 23:57:36 +0200
commitfe348844d9586ab7c19514f33a4bf2995152959e (patch)
tree5b04812addf2476183a64f3e768ba3a5cc61d17b
parent767e00277f379410288476ecd05622968eec1d1b (diff)
downloadyoutube-dl-fe348844d9586ab7c19514f33a4bf2995152959e.tar.gz
youtube-dl-fe348844d9586ab7c19514f33a4bf2995152959e.tar.xz
youtube-dl-fe348844d9586ab7c19514f33a4bf2995152959e.zip
SoundcloudSetIE: Use upload_date in the unified format (fixes #812)
-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 6d8e7be10..e430069d5 100755
--- 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'],