1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-28 22:59:34 +00:00

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

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-04-29 23:57:36 +02:00
parent 767e00277f
commit fe348844d9

View file

@ -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'],