From 96066f54fd0d90e5900da1ee8fa603c0f571a928 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Wed, 3 Feb 2016 17:00:13 +0100 Subject: [PATCH] bugfix for undefined variable 'nowait' in util.execfuncs.lkill --- nepi/util/execfuncs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nepi/util/execfuncs.py b/nepi/util/execfuncs.py index 70cec88c..a78ef399 100644 --- a/nepi/util/execfuncs.py +++ b/nepi/util/execfuncs.py @@ -214,7 +214,7 @@ def lstatus(pid, ppid): return ProcStatus.RUNNING if status else ProcStatus.FINISHED -def lkill(pid, ppid, sudo = False): +def lkill(pid, ppid, sudo = False, nowait = False): """ Kill a process spawned with lspawn. -- 2.43.0