diff options
| author | Barry Warsaw | 2008-06-15 00:01:55 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2008-06-15 00:01:55 -0400 |
| commit | ee349897c99a75da4da4698c64bee8cd0d743d97 (patch) | |
| tree | e2b00e3c9eb399d8dd77d6a60a30a996af57ed44 /mailman/queue | |
| parent | 67e437883d520bf7ea78ae55235892aa946ef0b4 (diff) | |
| parent | 3d192123461559445bd7e68ef163828bb51852e6 (diff) | |
| download | mailman-ee349897c99a75da4da4698c64bee8cd0d743d97.tar.gz mailman-ee349897c99a75da4da4698c64bee8cd0d743d97.tar.zst mailman-ee349897c99a75da4da4698c64bee8cd0d743d97.zip | |
Diffstat (limited to 'mailman/queue')
| -rw-r--r-- | mailman/queue/archive.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mailman/queue/archive.py b/mailman/queue/archive.py index 52e73d9c8..c24d9478d 100644 --- a/mailman/queue/archive.py +++ b/mailman/queue/archive.py @@ -80,6 +80,5 @@ class ArchiveRunner(Runner): # While a list archiving lock is acquired, archive the message. with Lock(os.path.join(mlist.data_path, 'archive.lck')): for archive_factory in get_plugins('mailman.archiver'): - archiver = archive_factory(mlist) - archiver.archive_message(msg) + archive_factory().archive_message(mlist, msg) |
