summaryrefslogtreecommitdiff
path: root/Mailman/Deliverer.py
diff options
context:
space:
mode:
authorbwarsaw2006-04-15 22:58:13 +0000
committerbwarsaw2006-04-15 22:58:13 +0000
commit592feaed3c2fbc9e0c8489805f818b6a9d5b13b8 (patch)
tree2a7e0afd65fd0a751a53489e6d3d2eaf973be2a1 /Mailman/Deliverer.py
parentfdd34dfe8926c22353e8b6defd4d538a52f4cc00 (diff)
downloadmailman-592feaed3c2fbc9e0c8489805f818b6a9d5b13b8.tar.gz
mailman-592feaed3c2fbc9e0c8489805f818b6a9d5b13b8.tar.zst
mailman-592feaed3c2fbc9e0c8489805f818b6a9d5b13b8.zip
Diffstat (limited to 'Mailman/Deliverer.py')
-rw-r--r--Mailman/Deliverer.py15
1 files changed, 5 insertions, 10 deletions
diff --git a/Mailman/Deliverer.py b/Mailman/Deliverer.py
index cb57e332c..63f98db73 100644
--- a/Mailman/Deliverer.py
+++ b/Mailman/Deliverer.py
@@ -1,4 +1,4 @@
-# Copyright (C) 1998-2005 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2006 by the Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@@ -21,22 +21,17 @@
from email.MIMEText import MIMEText
from email.MIMEMessage import MIMEMessage
-from Mailman import mm_cfg
+from Mailman import i18n
from Mailman import Errors
-from Mailman import Utils
from Mailman import Message
-from Mailman import i18n
+from Mailman import mm_cfg
+from Mailman import Utils
from Mailman import Pending
+
from Mailman.Logging.Syslog import syslog
_ = i18n._
-try:
- True, False
-except NameError:
- True = 1
- False = 0
-
class Deliverer: