diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/parse_emails.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/parse_emails.py b/python/parse_emails.py index aa59b44b..f8d64eba 100644 --- a/python/parse_emails.py +++ b/python/parse_emails.py @@ -64,7 +64,7 @@ def parse_quotedate(fh, date_received): line = line.rstrip() if "At:" in line or "Sent:" in line: for p in ["%m/%d/%y %H:%M:%S", "%b %d %Y %H:%M:%S", "%m/%d %H:%M:%S", - "%B %d, %Y %H:%M %p"]: + "%B %d, %Y %I:%M %p"]: try: quotedate = pd.to_datetime(line, format=p, exact=False) except ValueError: |
