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:
parent
4ee32ebaf3
commit
efdcc263dd
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue