From 03316c59645be79c73d0c802f5d552ef2f7eff4d Mon Sep 17 00:00:00 2001 From: bwarsaw Date: Mon, 2 Dec 2002 14:03:45 +0000 Subject: Updated comments to reflect that NotAMemberError is the one true exception that can get raised. --- Mailman/SecurityManager.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mailman/SecurityManager.py b/Mailman/SecurityManager.py index 03d5aa144..8b65738e3 100644 --- a/Mailman/SecurityManager.py +++ b/Mailman/SecurityManager.py @@ -87,9 +87,9 @@ class SecurityManager: # # Return the authcontext's secret and cookie key. If the authcontext # doesn't exist, return the tuple (None, None). If authcontext is - # AuthUser, but the user isn't a member of this mailing list, raise a - # MMNotAMemberError error. If the user's secret is None, raise a - # MMBadUserError. + # AuthUser, but the user isn't a member of this mailing list, a + # NotAMemberError will be raised. If the user's secret is None, raise + # a MMBadUserError. key = self.internal_name() + '+' if authcontext == mm_cfg.AuthUser: if user is None: -- cgit v1.3.1