[utils] unified_timestamp: Recognize Sunday (#10589)
Authored by: bashonly
This commit is contained in:
parent
28d485714f
commit
6daf2c27c0
2 changed files with 3 additions and 1 deletions
|
|
@ -1217,7 +1217,7 @@ def unified_timestamp(date_str, day_first=True):
|
|||
return None
|
||||
|
||||
date_str = re.sub(r'\s+', ' ', re.sub(
|
||||
r'(?i)[,|]|(mon|tues?|wed(nes)?|thu(rs)?|fri|sat(ur)?)(day)?', '', date_str))
|
||||
r'(?i)[,|]|(mon|tues?|wed(nes)?|thu(rs)?|fri|sat(ur)?|sun)(day)?', '', date_str))
|
||||
|
||||
pm_delta = 12 if re.search(r'(?i)PM', date_str) else 0
|
||||
timezone, date_str = extract_timezone(date_str)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue