diff options
Diffstat (limited to 'src/mailman/commands/cli_withlist.py')
| -rw-r--r-- | src/mailman/commands/cli_withlist.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mailman/commands/cli_withlist.py b/src/mailman/commands/cli_withlist.py index 1b5cab336..f7ade0485 100644 --- a/src/mailman/commands/cli_withlist.py +++ b/src/mailman/commands/cli_withlist.py @@ -21,6 +21,7 @@ from __future__ import absolute_import, unicode_literals __metaclass__ = type __all__ = [ + 'Shell', 'Withlist', ] @@ -212,3 +213,10 @@ mailing list. You could put the following function in a file called and run this from the command line: % bin/mailman withlist -r change mylist@example.com 'My List'""") + + + +class Shell(Withlist): + """An alias for `withlist`.""" + + name = 'shell' |
