mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-23 02:25:11 +00:00
ArteTvIE: Fix format of upload date
This commit is contained in:
parent
0c021ad171
commit
f8602d3242
1 changed files with 1 additions and 1 deletions
|
@ -1218,7 +1218,7 @@ def extractPlus7Stream(self, url):
|
||||||
'id': info.get('id'),
|
'id': info.get('id'),
|
||||||
'url': compat_urllib_parse.unquote(info.get('url')),
|
'url': compat_urllib_parse.unquote(info.get('url')),
|
||||||
'uploader': u'arte.tv',
|
'uploader': u'arte.tv',
|
||||||
'upload_date': info.get('date'),
|
'upload_date': unified_strdate(info.get('date')),
|
||||||
'title': info.get('title').decode('utf-8'),
|
'title': info.get('title').decode('utf-8'),
|
||||||
'ext': u'mp4',
|
'ext': u'mp4',
|
||||||
'format': u'NA',
|
'format': u'NA',
|
||||||
|
|
Loading…
Reference in a new issue