From e9ca125976b6a20ca6b5b5b8647b563a1d0b7579 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 25 Mar 2016 14:55:29 +0800 Subject: [PATCH] protocols/remote_exec: fix call --- artiq/protocols/remote_exec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/protocols/remote_exec.py b/artiq/protocols/remote_exec.py index 621e97b8b..be0bf3642 100644 --- a/artiq/protocols/remote_exec.py +++ b/artiq/protocols/remote_exec.py @@ -17,7 +17,7 @@ class RemoteExecServer: exec(code, self.namespace) def call(self, function, *args, **kwargs): - return self.namespace[k](self, *args, **kwargs) + return self.namespace[function](self, *args, **kwargs) class RemoteExecClient(RPCClient):