From: Oleg Broytman Date: Sat, 13 May 2017 16:20:21 +0000 (+0300) Subject: Feat(Python3): Fix lambda X-Git-Tag: 5.0.0~119 X-Git-Url: https://git.phdru.name/?p=bookmarks_db.git;a=commitdiff_plain;h=ffdaa8835ae34cd5b9c712d962a5830e0edeed05 Feat(Python3): Fix lambda --- 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"""