[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
1 changed files with 1 additions and 1 deletions

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'):