From ffdaa8835ae34cd5b9c712d962a5830e0edeed05 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sat, 13 May 2017 19:20:21 +0300 Subject: [PATCH] Feat(Python3): Fix lambda --- subproc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subproc.py b/subproc.py index 3507ac1..7344a51 100644 --- a/subproc.py +++ b/subproc.py @@ -325,7 +325,7 @@ class Subprocess: # Only got here if subprocess is not gone: raise SubprocessError( "Failed kill of subproc %d, '%s', with signals %s" % - (self.pid, self.cmd, map(lambda(x): x[0], sigs))) + (self.pid, self.cmd, map(lambda x: x[0], sigs))) def __del__(self): """Terminate the subprocess""" -- 2.39.2