Browse Source

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

rtmp_test
Jaime Marquínez Ferrándiz 12 years ago
parent
commit
fe348844d9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/InfoExtractors.py

+ 1
- 1
youtube_dl/InfoExtractors.py 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'],


Loading…
Cancel
Save