1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-10 07:09:32 +00:00

[utils] Make unified_strdate always return unicode string

This commit is contained in:
Sergey M․ 2015-10-31 23:07:37 +06:00
parent e327b736ca
commit ae12bc3ebb

View file

@ -910,7 +910,7 @@ def unified_strdate(date_str, day_first=True):
timetuple = email.utils.parsedate_tz(date_str)
if timetuple:
upload_date = datetime.datetime(*timetuple[:6]).strftime('%Y%m%d')
return upload_date
return compat_str(upload_date)
def determine_ext(url, default_ext='unknown_video'):