[utils] Improve unified_timestamp
This commit is contained in:
parent
70e7967202
commit
2ae2ffda5e
2 changed files with 2 additions and 1 deletions
|
@ -1179,7 +1179,7 @@ def unified_timestamp(date_str, day_first=True):
|
|||
if date_str is None:
|
||||
return None
|
||||
|
||||
date_str = date_str.replace(',', ' ')
|
||||
date_str = re.sub(r'[,|]', '', 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