SoundcloudSetIE: Use upload_date in the unified format (fixes #812)
[youtube-dl] / youtube_dl / InfoExtractors.py
index 6d8e7be109253306b757d7def8ad142ec7076c01..e430069d5b7915cf31ae8c427d2222042729395c 100755 (executable)
@@ -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'],