diff options
| author | Barry Warsaw | 2016-04-01 16:40:39 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2016-04-01 16:40:39 -0400 |
| commit | b87447ffe4a20793e22884a99a7f9afe3a803004 (patch) | |
| tree | 332b20714199bc83a9b2d592682e287866ed9a1d /src/mailman/commands/eml_membership.py | |
| parent | f7e9e4698bdd4cee39c9eb485296cbbfa32369a9 (diff) | |
| download | mailman-b87447ffe4a20793e22884a99a7f9afe3a803004.tar.gz mailman-b87447ffe4a20793e22884a99a7f9afe3a803004.tar.zst mailman-b87447ffe4a20793e22884a99a7f9afe3a803004.zip | |
Diffstat (limited to 'src/mailman/commands/eml_membership.py')
| -rw-r--r-- | src/mailman/commands/eml_membership.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/commands/eml_membership.py b/src/mailman/commands/eml_membership.py index 4f8e62a69..8168e98fa 100644 --- a/src/mailman/commands/eml_membership.py +++ b/src/mailman/commands/eml_membership.py @@ -92,7 +92,7 @@ used. return ContinueProcessing.yes joins.add(email) results.joins = joins - person = formataddr((display_name, email)) # flake8: noqa + person = formataddr((display_name, email)) # noqa # Is this person already a member of the list? Search for all # matching memberships. members = getUtility(ISubscriptionService).find_members( @@ -187,7 +187,7 @@ You may be asked to confirm your request.""") file=results) return ContinueProcessing.no member.unsubscribe() - person = formataddr((user.display_name, email)) # flake8: noqa + person = formataddr((user.display_name, email)) # noqa print(_('$person left $mlist.fqdn_listname'), file=results) return ContinueProcessing.yes |
