1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2024-11-29 19:47:54 +01:00

Update lynda.py

This commit is contained in:
rootyElf 2018-04-23 19:35:40 +02:00 committed by GitHub
parent e258e54e5a
commit 3afa09c0b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -312,7 +312,7 @@ class LyndaCourseIE(LyndaBaseIE):
templateVars = {}
date = course.get('DateReleasedUtc')
if date:
date = date[6:10] + '-' + date[0:2] + '-' + date[3:5]
date = date[6:10] + date[0:2] + date[3:5]
templateVars.update({'release_date': date})
authors = course.get("Authors")