diff options
| author | Barry Warsaw | 2007-09-29 14:55:25 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2007-09-29 14:55:25 -0400 |
| commit | 3e9ed398b6a05c69daca14c8226ca7f57c164c21 (patch) | |
| tree | b0ae2e9771a80f9e0e6218871bbe2d281120202c /Mailman/bin/owner.py | |
| parent | cbf2967239163e42cc2b25eece7bb5cb71b197fe (diff) | |
| download | mailman-3e9ed398b6a05c69daca14c8226ca7f57c164c21.tar.gz mailman-3e9ed398b6a05c69daca14c8226ca7f57c164c21.tar.zst mailman-3e9ed398b6a05c69daca14c8226ca7f57c164c21.zip | |
Diffstat (limited to 'Mailman/bin/owner.py')
| -rw-r--r-- | Mailman/bin/owner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/bin/owner.py b/Mailman/bin/owner.py index 3b2bec383..183640773 100644 --- a/Mailman/bin/owner.py +++ b/Mailman/bin/owner.py @@ -31,9 +31,9 @@ import logging from Mailman import Utils from Mailman import loginit -from Mailman.Queue.sbcache import get_switchboard from Mailman.configuration import config from Mailman.i18n import _ +from Mailman.queue import Switchboard __i18n_templates__ = True @@ -57,7 +57,7 @@ def main(): # incoming queue because we need some processing done on the message. The # processing is minimal though, so craft our own pipeline, expressly for # the purpose of delivering to the list owners. - inq = get_switchboard(config.INQUEUE_DIR) + inq = Switchboard(config.INQUEUE_DIR) inq.enqueue(sys.stdin.read(), listname=listname, _plaintext=True, |
