mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[utils] Add one more template to unified_strdate
This commit is contained in:
parent
d5c418f29f
commit
79c21abba7
@ -759,6 +759,7 @@ def unified_strdate(date_str, day_first=True):
|
|||||||
]
|
]
|
||||||
if day_first:
|
if day_first:
|
||||||
format_expressions.extend([
|
format_expressions.extend([
|
||||||
|
'%d-%m-%Y',
|
||||||
'%d.%m.%Y',
|
'%d.%m.%Y',
|
||||||
'%d/%m/%Y',
|
'%d/%m/%Y',
|
||||||
'%d/%m/%y',
|
'%d/%m/%y',
|
||||||
@ -766,6 +767,7 @@ def unified_strdate(date_str, day_first=True):
|
|||||||
])
|
])
|
||||||
else:
|
else:
|
||||||
format_expressions.extend([
|
format_expressions.extend([
|
||||||
|
'%m-%d-%Y',
|
||||||
'%m.%d.%Y',
|
'%m.%d.%Y',
|
||||||
'%m/%d/%Y',
|
'%m/%d/%Y',
|
||||||
'%m/%d/%y',
|
'%m/%d/%y',
|
||||||
|
Loading…
Reference in New Issue
Block a user