Fix for issue 22880, this should be **kwargs, not kwargs=None.

Without this fix, and kwargs passed results in a TypeError
This commit is contained in:
Fred Reimer 2015-04-20 23:38:01 -04:00 committed by Fred Reimer
parent 180f2af73b
commit ffc2683e81

View File

@ -148,7 +148,7 @@ class SyncClientMixin(object):
return ret['data']['return'] return ret['data']['return']
def cmd(self, fun, arg=None, pub_data=None, kwarg=None): def cmd(self, fun, arg=None, pub_data=None, **kwarg):
''' '''
Execute a function Execute a function