Skip to content

Commit bb0332f

Browse files
committed
Fix help broken in e013856 to make tests pass again
1 parent 92ce1be commit bb0332f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: supervisor/supervisorctl.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@ def handle_error(self, message=None, fatal=False, code=None):
10861086
self.ctl.handle_error(message=message, fatal=fatal, code=code)
10871087

10881088
def help_reread(self):
1089-
self.ctl.output("reread \t\t\tReload the daemon's configuration files without add and remove")
1089+
self.ctl.output("reread \t\t\tReload the daemon's configuration files without add/remove")
10901090

10911091
def do_add(self, arg):
10921092
names = arg.split()
@@ -1199,8 +1199,8 @@ def log(name, message):
11991199
log(gname, "added process group")
12001200

12011201
def help_update(self):
1202-
self.ctl.output("update\t\t\tReload config and add and remove as necessary, and will restart affected programs")
1203-
self.ctl.output("update all\t\tReload config and add and remove as necessary, and will restart affected programs")
1202+
self.ctl.output("update\t\t\tReload config and add/remove as necessary, and will restart affected programs")
1203+
self.ctl.output("update all\t\tReload config and add/remove as necessary, and will restart affected programs")
12041204
self.ctl.output("update <gname> [...]\tUpdate specific groups")
12051205

12061206
def _clearresult(self, result):

0 commit comments

Comments
 (0)