diff options
| author | Barry Warsaw | 2010-02-13 23:47:50 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2010-02-13 23:47:50 -0500 |
| commit | 5d12a07fccf0278293e222ca5a5c4a7653d4f0af (patch) | |
| tree | 6de20dec89607c8f6403b1c6ad121baeddb5380a /src/mailman/bin/mailman.py | |
| parent | 646bdb50ad4ab64cdfc4ff6f48ae3df53ef658d5 (diff) | |
| download | mailman-5d12a07fccf0278293e222ca5a5c4a7653d4f0af.tar.gz mailman-5d12a07fccf0278293e222ca5a5c4a7653d4f0af.tar.zst mailman-5d12a07fccf0278293e222ca5a5c4a7653d4f0af.zip | |
Diffstat (limited to 'src/mailman/bin/mailman.py')
| -rw-r--r-- | src/mailman/bin/mailman.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mailman/bin/mailman.py b/src/mailman/bin/mailman.py index a1ebccc8e..2bec7a1d4 100644 --- a/src/mailman/bin/mailman.py +++ b/src/mailman/bin/mailman.py @@ -39,6 +39,7 @@ from mailman.version import MAILMAN_VERSION_FULL def main(): + """bin/mailman""" # Create the basic parser and add all globally common options. parser = argparse.ArgumentParser( description=_("""\ @@ -68,6 +69,7 @@ def main(): # --help should display the subcommands by alphabetical order, except that # 'mailman help' should be first. def sort_function(command, other): + """Sorting helper.""" if command.name == 'help': return -1 elif other.name == 'help': |
