diff options
| author | bwarsaw | 2002-05-02 03:04:54 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-05-02 03:04:54 +0000 |
| commit | 4eb15e0048783bdc6ea7c0a444de547742174ed6 (patch) | |
| tree | a3481ac27db09dda60a504f509eab3bb8a3be605 /Mailman/Gui/General.py | |
| parent | 466d6f1291f452e981da00f68adf6e7a001b9760 (diff) | |
| download | mailman-4eb15e0048783bdc6ea7c0a444de547742174ed6.tar.gz mailman-4eb15e0048783bdc6ea7c0a444de547742174ed6.tar.zst mailman-4eb15e0048783bdc6ea7c0a444de547742174ed6.zip | |
Diffstat (limited to 'Mailman/Gui/General.py')
| -rw-r--r-- | Mailman/Gui/General.py | 4 |
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 |
