diff options
author | Mark Sapiro <mark@msapiro.net> | 2019-05-22 07:49:35 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2019-05-22 07:49:35 -0700 |
commit | e924228ee33e529f4a9d63b9bdf88ff0d187c76f (patch) | |
tree | 5bcdfa508768cecb2de364288185191b72f9af19 | |
parent | 29ada0f601a166574a89140b51d213aa343f977a (diff) | |
download | mailman2-e924228ee33e529f4a9d63b9bdf88ff0d187c76f.tar.gz mailman2-e924228ee33e529f4a9d63b9bdf88ff0d187c76f.tar.xz mailman2-e924228ee33e529f4a9d63b9bdf88ff0d187c76f.zip |
Fixed misspelling of mailmanctl no-restart option.
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | bin/mailmanctl | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -41,6 +41,8 @@ Here is a history of user visible changes to Mailman. - Leading/trailing spaces in provided email addresses for login to private archives and the user options page are now ignored. (LP: #1818872) + - Fixed the spelling of the --no-restart option for mailmanctl. + 2.1.29 (24-Jul-2018) Bug Fixes diff --git a/bin/mailmanctl b/bin/mailmanctl index dcaac05c..cb6e649d 100644 --- a/bin/mailmanctl +++ b/bin/mailmanctl @@ -311,7 +311,7 @@ def main(): global quiet try: opts, args = getopt.getopt(sys.argv[1:], 'hnusq', - ['help', 'no-start', 'run-as-user', + ['help', 'no-restart', 'run-as-user', 'stale-lock-cleanup', 'quiet']) except getopt.error, msg: usage(1, msg) |