diff options
| author | bwarsaw | 2000-04-04 23:41:04 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-04-04 23:41:04 +0000 |
| commit | 4affb80d09a61ad3fb11c71c92c183de7f80bb24 (patch) | |
| tree | 6f0b418af4445654ef9aa8bf9c43bd05d7e0b8a5 /Mailman/MailCommandHandler.py | |
| parent | 5b788a556e02905480260eaecc7adf81e1aa0e55 (diff) | |
| download | mailman-4affb80d09a61ad3fb11c71c92c183de7f80bb24.tar.gz mailman-4affb80d09a61ad3fb11c71c92c183de7f80bb24.tar.zst mailman-4affb80d09a61ad3fb11c71c92c183de7f80bb24.zip | |
Diffstat (limited to 'Mailman/MailCommandHandler.py')
| -rw-r--r-- | Mailman/MailCommandHandler.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mailman/MailCommandHandler.py b/Mailman/MailCommandHandler.py index e49f1128f..46d6d2578 100644 --- a/Mailman/MailCommandHandler.py +++ b/Mailman/MailCommandHandler.py @@ -304,7 +304,7 @@ The following is a detailed description of the problems. self.ConfirmUserPassword(sender, args[0]) self.ChangeUserPassword(sender, args[1], args[1]) self.AddToResponse('Succeeded.') - except Errors.MMListNotReady: + except Errors.MMListNotReadyError: self.AddError("List is not functional.") except Errors.MMNotAMemberError: self.AddError("%s isn't subscribed to this list." % sender, @@ -383,7 +383,7 @@ The following is a detailed description of the problems. self.AddError("List only accepts digest members.") except Errors.MMCantDigestError: self.AddError("List doesn't accept digest members.") - except Errors.MMListNotReady: + except Errors.MMListNotReadyError: self.AddError("List is not functional.") except Errors.MMNoSuchUserError: self.AddError("%s is not subscribed to this list." @@ -514,7 +514,7 @@ background and instructions for subscribing to and using it, visit: self.ConfirmUserPassword(addr, args[0]) self.DeleteMember(addr, "mailcmd") self.AddToResponse("Succeeded.") - except Errors.MMListNotReady: + except Errors.MMListNotReadyError: self.AddError("List is not functional.") except (Errors.MMNoSuchUserError, Errors.MMNotAMemberError): self.AddError("%s is not subscribed to this list." % addr, @@ -577,7 +577,7 @@ background and instructions for subscribing to and using it, visit: self.AddError("Mailman won't accept the given email " "address as a valid address.\n" "(Does it have an @ in it???)") - except Errors.MMListNotReady: + except Errors.MMListNotReadyError: self.AddError("The list is not fully functional, and " "can not accept subscription\n" "requests.") |
