fixed error in FuntionCall_Client -> must not pop 'f' away

This commit is contained in:
Richard Hartmann 2014-12-04 19:42:49 -02:00
parent 1c2b744918
commit 0bf3801289

View file

@ -150,10 +150,10 @@ class FunctionCall_Client(JobManager_Client):
@staticmethod
def func(arg, const_arg, c, m):
f = const_arg['f']
const_arg.pop('f')
f_kwargs = {}
f_kwargs.update(arg)
f_kwargs.update(const_arg)
f_kwargs.pop('f')
f_kwargs['__c'] = c
f_kwargs['__m'] = m