zulip_tools: Fix a typo in a comment.

This commit is contained in:
Alex Vandiver 2022-01-03 09:58:08 -08:00 committed by Tim Abbott
parent dcfe9d0dd8
commit 4aaa250623
1 changed files with 1 additions and 1 deletions

View File

@ -623,7 +623,7 @@ def list_supervisor_processes(*args: str) -> List[str]:
universal_newlines=True,
stdout=subprocess.PIPE,
)
# `supercisorctl status` returns 3 if any are stopped, which is
# `supervisorctl status` returns 3 if any are stopped, which is
# fine here; and exit code 4 is for no such process, which is
# handled below.
if worker_status.returncode not in (0, 3, 4):