2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-25 03:08:27 +08:00

protocols/remote_exec: fix call

This commit is contained in:
Sebastien Bourdeauducq 2016-03-25 14:55:29 +08:00
parent 590bedbd1e
commit e9ca125976

View File

@ -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):