From 4aaa250623863bae55896a107f815831379c1fd0 Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Mon, 3 Jan 2022 09:58:08 -0800 Subject: [PATCH] zulip_tools: Fix a typo in a comment. --- scripts/lib/zulip_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/zulip_tools.py b/scripts/lib/zulip_tools.py index f4669cc110..862e1ff4c1 100755 --- a/scripts/lib/zulip_tools.py +++ b/scripts/lib/zulip_tools.py @@ -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):