diff options
| -rw-r--r-- | Mailman/Commands/cmd_confirm.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Mailman/Commands/cmd_confirm.py b/Mailman/Commands/cmd_confirm.py index 5119b52e4..83992cf05 100644 --- a/Mailman/Commands/cmd_confirm.py +++ b/Mailman/Commands/cmd_confirm.py @@ -59,10 +59,11 @@ Your request has been forwarded to the list moderator for approval.""")) # already succeeded. res.results.append(_('You are already subscribed.')) return STOP - except Errors.MMNoSuchUserError: + except Errors.NotAMemberError: # They've already been unsubscribed res.results.append(_("""\ -You are not a member. Have you already unsubscribed?""")) +You are not current a member. Have you already unsubscribed or changed +your email address?""")) return STOP else: res.results.append(_('Confirmation succeeded')) |
