shell_command: fix typo

The trailing underscore in IDX_SIGKILL is not correct.

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Arksine 2021-05-09 08:15:20 -04:00
parent 4ee32ebaf3
commit efdcc263dd
1 changed files with 1 additions and 1 deletions

View File

@ -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