Browse Source

[utils] Do not fail on unknown date formats in unified_strdate

totalwebcasting
Sergey M․ 8 years ago
parent
commit
c6b9cf05e1
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      youtube_dl/utils.py

+ 4
- 1
youtube_dl/utils.py View File

@ -1055,7 +1055,10 @@ def unified_strdate(date_str, day_first=True):
if upload_date is None:
timetuple = email.utils.parsedate_tz(date_str)
if timetuple:
upload_date = datetime.datetime(*timetuple[:6]).strftime('%Y%m%d')
try:
upload_date = datetime.datetime(*timetuple[:6]).strftime('%Y%m%d')
except ValueError:
pass
if upload_date is not None:
return compat_str(upload_date)


Loading…
Cancel
Save