[utils] Make unified_strdate always return unicode string
This commit is contained in:
parent
e327b736ca
commit
ae12bc3ebb
1 changed files with 1 additions and 1 deletions
|
@ -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'):
|
||||
|
|
Loading…
Reference in a new issue