summaryrefslogtreecommitdiff
path: root/Mailman/Gui/General.py
diff options
context:
space:
mode:
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