diff options
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': |
