summaryrefslogtreecommitdiff
path: root/src/mailman/bin/mailman.py
diff options
context:
space:
mode:
authorBarry Warsaw2010-02-13 23:47:50 -0500
committerBarry Warsaw2010-02-13 23:47:50 -0500
commit5d12a07fccf0278293e222ca5a5c4a7653d4f0af (patch)
tree6de20dec89607c8f6403b1c6ad121baeddb5380a /src/mailman/bin/mailman.py
parent646bdb50ad4ab64cdfc4ff6f48ae3df53ef658d5 (diff)
downloadmailman-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.py2
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':