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/cli_lists.py | |
| parent | f7e9e4698bdd4cee39c9eb485296cbbfa32369a9 (diff) | |
| download | mailman-b87447ffe4a20793e22884a99a7f9afe3a803004.tar.gz mailman-b87447ffe4a20793e22884a99a7f9afe3a803004.tar.zst mailman-b87447ffe4a20793e22884a99a7f9afe3a803004.zip | |
Diffstat (limited to 'src/mailman/commands/cli_lists.py')
| -rw-r--r-- | src/mailman/commands/cli_lists.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mailman/commands/cli_lists.py b/src/mailman/commands/cli_lists.py index 8720f91c5..0b077543e 100644 --- a/src/mailman/commands/cli_lists.py +++ b/src/mailman/commands/cli_lists.py @@ -89,7 +89,7 @@ class Lists: if not args.quiet: print(_('No matching mailing lists found')) return - count = len(mailing_lists) # flake8: noqa + count = len(mailing_lists) # noqa if not args.quiet: print(_('$count matching mailing lists found:')) # Calculate the longest identifier. @@ -198,8 +198,7 @@ class Create: invalid_owners = [owner for owner in args.owners if not validator.is_valid(owner)] if invalid_owners: - invalid = COMMASPACE.join( # flake8: noqa - sorted(invalid_owners)) + invalid = COMMASPACE.join(sorted(invalid_owners)) # noqa self.parser.error(_('Illegal owner addresses: $invalid')) return try: |
