From efdcc263dddcf2ec410879314c056ba131e42344 Mon Sep 17 00:00:00 2001 From: Arksine Date: Sun, 9 May 2021 08:15:20 -0400 Subject: [PATCH] shell_command: fix typo The trailing underscore in IDX_SIGKILL is not correct. Signed-off-by: Eric Callahan --- moonraker/components/shell_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moonraker/components/shell_command.py b/moonraker/components/shell_command.py index b7ed972..443a478 100644 --- a/moonraker/components/shell_command.py +++ b/moonraker/components/shell_command.py @@ -94,7 +94,7 @@ class SCProcess(asyncio.subprocess.Process): class ShellCommand: IDX_SIGINT = 0 IDX_SIGTERM = 1 - IDX_SIGKILL_= 2 + IDX_SIGKILL = 2 def __init__(self, cmd, std_out_callback, std_err_callback, env=None, log_stderr=False, cwd=None): self.name = cmd