diff options
| author | mailman | 1998-04-07 15:03:15 +0000 |
|---|---|---|
| committer | mailman | 1998-04-07 15:03:15 +0000 |
| commit | 8f2b432ea872c9dcc9d046fef42cc9d76043f9d0 (patch) | |
| tree | 0c85330ed0f691b33bedff9b775ec9b565e4adc9 /modules/maillist.py | |
| parent | 2430e227f307ee29c27c289c3fddeeea96813d6f (diff) | |
| download | mailman-8f2b432ea872c9dcc9d046fef42cc9d76043f9d0.tar.gz mailman-8f2b432ea872c9dcc9d046fef42cc9d76043f9d0.tar.zst mailman-8f2b432ea872c9dcc9d046fef42cc9d76043f9d0.zip | |
A few checkins on the parrot side, in completing this batch of
checkins.
.DoActualRemoval(): Fixed neglect in certain cases to initialize one
of the reporting vars.
Diffstat (limited to 'modules/maillist.py')
| -rw-r--r-- | modules/maillist.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/maillist.py b/modules/maillist.py index bb0e6de60..243f1ff49 100644 --- a/modules/maillist.py +++ b/modules/maillist.py @@ -527,16 +527,19 @@ class MailList(MailCommandHandler, HTMLFormatter, Deliverer, ListAdmin, raise mm_err.MMNoSuchUserError def DoActualRemoval(alias, me=self): + kind = "(unfound)" try: del me.passwords[alias] except KeyError: pass try: me.members.remove(alias) + kind = "regular" except ValueError: pass try: me.digest_members.remove(alias) + kind = "digest" except ValueError: pass |
