summaryrefslogtreecommitdiff
path: root/Mailman/Gui/General.py
diff options
context:
space:
mode:
authorbwarsaw2002-05-02 03:04:54 +0000
committerbwarsaw2002-05-02 03:04:54 +0000
commit4eb15e0048783bdc6ea7c0a444de547742174ed6 (patch)
treea3481ac27db09dda60a504f509eab3bb8a3be605 /Mailman/Gui/General.py
parent466d6f1291f452e981da00f68adf6e7a001b9760 (diff)
downloadmailman-4eb15e0048783bdc6ea7c0a444de547742174ed6.tar.gz
mailman-4eb15e0048783bdc6ea7c0a444de547742174ed6.tar.zst
mailman-4eb15e0048783bdc6ea7c0a444de547742174ed6.zip
Diffstat (limited to 'Mailman/Gui/General.py')
-rw-r--r--Mailman/Gui/General.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Mailman/Gui/General.py b/Mailman/Gui/General.py
index ff260fd8d..cfb5d578b 100644
--- a/Mailman/Gui/General.py
+++ b/Mailman/Gui/General.py
@@ -22,8 +22,6 @@ from Mailman import Utils
from Mailman import Errors
from Mailman.i18n import _
from Mailman.Gui.GUIBase import GUIBase
-# BAW: bogus! This should be in a separate module (Utils?)
-from Mailman.MailCommandHandler import option_info
OPTIONS = ('hide', 'ack', 'notmetoo', 'nodupes')
@@ -410,7 +408,7 @@ class General(GUIBase):
elif property == 'new_member_options':
newopts = 0
for opt in OPTIONS:
- bitfield = option_info[opt]
+ bitfield = mm_cfg.OPTINFO[opt]
if opt in val:
newopts |= bitfield
mlist.new_member_options = newopts