From a9215463c4c9467b1430556eae3241432c677c21 Mon Sep 17 00:00:00 2001 From: Nikolaus Schulz Date: Sat, 15 Mar 2008 20:34:52 +0000 Subject: [PATCH] Removed an assertion which choked upon --days=0. --- archivemail.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/archivemail.py b/archivemail.py index 3402e8f..baed5d9 100755 --- a/archivemail.py +++ b/archivemail.py @@ -1049,10 +1049,7 @@ def is_older_than_days(time_message, max_days): time_message -- the delivery date of the message measured in seconds since the epoch max_days -- maximum number of days before message is considered old - """ - assert(max_days >= 1) - time_now = time.time() if time_message > time_now: vprint("warning: message has date in the future")