diff options
| author | tkikuchi | 2006-02-03 08:12:14 +0000 |
|---|---|---|
| committer | tkikuchi | 2006-02-03 08:12:14 +0000 |
| commit | 06934160815d2f92c8c8b969758c7dfceb0e47de (patch) | |
| tree | 6f29bd9e448ad41c3f62dea0818ae94123f94e9b /Mailman/Queue/ArchRunner.py | |
| parent | 142258e0a1eb37be811fa749935b271b01e52b3d (diff) | |
| download | mailman-06934160815d2f92c8c8b969758c7dfceb0e47de.tar.gz mailman-06934160815d2f92c8c8b969758c7dfceb0e47de.tar.zst mailman-06934160815d2f92c8c8b969758c7dfceb0e47de.zip | |
Diffstat (limited to 'Mailman/Queue/ArchRunner.py')
| -rw-r--r-- | Mailman/Queue/ArchRunner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Queue/ArchRunner.py b/Mailman/Queue/ArchRunner.py index 0abb1d1b2..627145372 100644 --- a/Mailman/Queue/ArchRunner.py +++ b/Mailman/Queue/ArchRunner.py @@ -49,7 +49,7 @@ class ArchRunner(Runner): elif abs(now - mktime_tz(tup)) > \ mm_cfg.ARCHIVER_ALLOWABLE_SANE_DATE_SKEW: clobber = 1 - except ValueError: + except (ValueError, OverflowError): # The likely cause of this is that the year in the Date: field # is horribly incorrect, e.g. (from SF bug # 571634): # Date: Tue, 18 Jun 0102 05:12:09 +0500 |
