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/request.py | |
| parent | cbf2967239163e42cc2b25eece7bb5cb71b197fe (diff) | |
| download | mailman-3e9ed398b6a05c69daca14c8226ca7f57c164c21.tar.gz mailman-3e9ed398b6a05c69daca14c8226ca7f57c164c21.tar.zst mailman-3e9ed398b6a05c69daca14c8226ca7f57c164c21.zip | |
Diffstat (limited to 'Mailman/bin/request.py')
| -rw-r--r-- | Mailman/bin/request.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/bin/request.py b/Mailman/bin/request.py index 9bdb1f3c0..6ced2a871 100644 --- a/Mailman/bin/request.py +++ b/Mailman/bin/request.py @@ -28,9 +28,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 @@ -55,7 +55,7 @@ def main(): # some MTAs have a hard limit to the time a filter prog can run. Postfix # is a good example; if the limit is hit, the proc is SIGKILL'd giving us # no chance to save the message. - cmdq = get_switchboard(config.CMDQUEUE_DIR) + cmdq = Switchboard(config.CMDQUEUE_DIR) cmdq.enqueue(sys.stdin.read(), listname=listname, torequest=True, |
