From 65085ff9e22a6ba00505cabc985afb573636daa1 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 24 Sep 2017 18:55:26 +0300 Subject: Fix: give os.kill pid as an integer --- yarns/900-implements.yarn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'yarns/900-implements.yarn') diff --git a/yarns/900-implements.yarn b/yarns/900-implements.yarn index 9e5732a..0a0818c 100644 --- a/yarns/900-implements.yarn +++ b/yarns/900-implements.yarn @@ -84,7 +84,7 @@ along with this program. If not, see . IMPLEMENTS WHEN user stops ick controller import os, signal - os.kill(vars['pid'], signal.SIGTERM) + os.kill(int(vars['pid']), signal.SIGTERM) IMPLEMENTS FINALLY stop ick controller import os, signal -- cgit v1.2.1