aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbwarsaw <>2003-12-01 01:29:58 +0000
committerbwarsaw <>2003-12-01 01:29:58 +0000
commit297f7bfea6e8214ae96f8ea491e62c6a0119f6da (patch)
tree67c8c882bdc9d5b1cd7b89ffe987060cda1ee06b
parent58b386710a20d779fe03cd16a61ca55ce065c6b6 (diff)
downloadmailman2-297f7bfea6e8214ae96f8ea491e62c6a0119f6da.tar.gz
mailman2-297f7bfea6e8214ae96f8ea491e62c6a0119f6da.tar.xz
mailman2-297f7bfea6e8214ae96f8ea491e62c6a0119f6da.zip
_getValidValue(): Basically ignore HeaderFilter widgets. They'll be handled
in the Privacy.py file.
-rw-r--r--Mailman/Gui/GUIBase.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Mailman/Gui/GUIBase.py b/Mailman/Gui/GUIBase.py
index 7062235e..8e9171d6 100644
--- a/Mailman/Gui/GUIBase.py
+++ b/Mailman/Gui/GUIBase.py
@@ -108,6 +108,8 @@ class GUIBase:
return val
if wtype == mm_cfg.Topics:
return val
+ if wtype == mm_cfg.HeaderFilter:
+ return val
# Should never get here
assert 0, 'Bad gui widget type: %s' % wtype