diff options
author | Nikolaus Schulz <microschulz@web.de> | 2007-11-13 00:36:51 +0000 |
---|---|---|
committer | Nikolaus Schulz <microschulz@web.de> | 2007-11-13 00:36:51 +0000 |
commit | 5178c956bc83422311d09c4f662c25bd240ba561 (patch) | |
tree | fab6f65c090b9c858d73ff909aa9bdfc5773aaab | |
parent | d9ffaf4a3b4c13eeaad53bf4b8a6fda48a7eee06 (diff) | |
download | archivemail-5178c956bc83422311d09c4f662c25bd240ba561.tar.gz archivemail-5178c956bc83422311d09c4f662c25bd240ba561.tar.bz2 archivemail-5178c956bc83422311d09c4f662c25bd240ba561.zip |
!%&$*# Repair previous broken commit where an unrelated hunk slipped through.
Reverted that hunk.
-rwxr-xr-x | archivemail.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archivemail.py b/archivemail.py index ae204cc..0427336 100755 --- a/archivemail.py +++ b/archivemail.py @@ -779,7 +779,7 @@ def guess_delivery_time(message): # get more desparate as we go through the array for header in ('Delivery-date', 'Date', 'Resent-Date'): try: - date = message.getdate_tz(header) + date = message.getdate(header) if date: time_message = time.mktime(date) vprint("using valid time found from '%s' header" % header) |