projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d8819d
)
[utils] Do not fail on unknown date formats in unified_strdate
author
Sergey M․
<dstftw@gmail.com>
Sun, 22 May 2016 02:28:41 +0000
(08:28 +0600)
committer
Sergey M․
<dstftw@gmail.com>
Sun, 22 May 2016 02:28:41 +0000
(08:28 +0600)
youtube_dl/utils.py
patch
|
blob
|
history
diff --git
a/youtube_dl/utils.py
b/youtube_dl/utils.py
index 5301d07404b4d83c4df5c99dd9a69f577b87f091..d65f5e833a530e1e9bf3e254c8b5ec4e099088b2 100644
(file)
--- a/
youtube_dl/utils.py
+++ b/
youtube_dl/utils.py
@@
-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)