1
0
Fork 0
mirror of https://git.code.sf.net/p/archivemail/code synced 2025-03-11 23:32:48 +00:00

!%&$*# Repair previous broken commit where an unrelated hunk slipped through.

Reverted that hunk.
This commit is contained in:
Nikolaus Schulz 2007-11-13 00:36:51 +00:00
parent d9ffaf4a3b
commit 5178c956bc

View file

@ -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)