aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Sapiro <mark@msapiro.net>2019-05-22 07:49:35 -0700
committerMark Sapiro <mark@msapiro.net>2019-05-22 07:49:35 -0700
commite924228ee33e529f4a9d63b9bdf88ff0d187c76f (patch)
tree5bcdfa508768cecb2de364288185191b72f9af19
parent29ada0f601a166574a89140b51d213aa343f977a (diff)
downloadmailman2-e924228ee33e529f4a9d63b9bdf88ff0d187c76f.tar.gz
mailman2-e924228ee33e529f4a9d63b9bdf88ff0d187c76f.tar.xz
mailman2-e924228ee33e529f4a9d63b9bdf88ff0d187c76f.zip
Fixed misspelling of mailmanctl no-restart option.
-rw-r--r--NEWS2
-rw-r--r--bin/mailmanctl2
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 29b0be7a..a16a18df 100644
--- a/NEWS
+++ b/NEWS
@@ -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)