Link in kwargs

This commit is contained in:
Thomas S Hatch 2012-10-04 16:29:39 -06:00
parent 626c9b80e0
commit cfba5edfbb

View File

@ -280,7 +280,8 @@ class LocalClient(object):
arg,
expr_form,
ret,
timeout):
timeout,
**kwargs):
'''
Prep the job dir and send minions the pub.
Returns a dict of (checked) pub_data or an empty dict.
@ -300,7 +301,8 @@ class LocalClient(object):
expr_form,
ret,
jid=jid,
timeout=timeout or self.opts['timeout'])
timeout=timeout or self.opts['timeout'],
**kwargs)
return self._check_pub_data(pub_data)