Revert "fix cloud.lxc usage of kwargs which seem to have changed"

This reverts commit a7f1508645.
This commit is contained in:
Erik Johnson 2014-03-23 13:03:47 -05:00
parent 873d84cc0a
commit e10ad36296

View File

@ -184,7 +184,9 @@ def _salt(fun, *args, **kw):
}.get(fun, '120'))
while wait_for_res:
wait_for_res -= 0.5
cret = runner.cmd('jobs.lookup_jid', [jid, 'output=false'])
cret = runner.cmd(
'jobs.lookup_jid',
[jid, {'__kwarg__': True, 'output': False}])
if target in cret:
ret = cret[target]
break