diff options
-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) |