projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
27ca82e
)
[utils] Clarify more day-month-first ambiguous formats
author
Sergey M․
<dstftw@gmail.com>
Sat, 10 Jan 2015 13:43:52 +0000
(19:43 +0600)
committer
Sergey M․
<dstftw@gmail.com>
Sat, 10 Jan 2015 13:43:52 +0000
(19:43 +0600)
youtube_dl/utils.py
patch
|
blob
|
history
diff --git
a/youtube_dl/utils.py
b/youtube_dl/utils.py
index 079e8d2c3f5168b3f0af233f3a5377f15e5a46f3..a12b0a7de4b00e7879ea4af75d2b4f333dc8f53a 100644
(file)
--- a/
youtube_dl/utils.py
+++ b/
youtube_dl/utils.py
@@
-679,9
+679,6
@@
def unified_strdate(date_str, day_first=True):
'%b %dth %Y %I:%M%p',
'%Y-%m-%d',
'%Y/%m/%d',
- '%d.%m.%Y',
- '%d/%m/%Y',
- '%d/%m/%y',
'%Y/%m/%d %H:%M:%S',
'%Y-%m-%d %H:%M:%S',
'%Y-%m-%d %H:%M:%S.%f',
@@
-696,10
+693,16
@@
def unified_strdate(date_str, day_first=True):
]
if day_first:
format_expressions.extend([
+ '%d.%m.%Y',
+ '%d/%m/%Y',
+ '%d/%m/%y',
'%d/%m/%Y %H:%M:%S',
])
else:
format_expressions.extend([
+ '%m.%d.%Y',
+ '%m/%d/%Y',
+ '%m/%d/%y',
'%m/%d/%Y %H:%M:%S',
])
for expression in format_expressions: