mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #24600 from basepi/salt-ssh.orchestrate.20615
[2015.5] Remove __kwarg__ from salt-ssh keyword args
This commit is contained in:
commit
0ff545c549
1 changed files with 2 additions and 0 deletions
|
@ -1219,6 +1219,8 @@ def _convert_args(args):
|
|||
for arg in args:
|
||||
if isinstance(arg, dict):
|
||||
for key in list(arg.keys()):
|
||||
if key == '__kwarg__':
|
||||
continue
|
||||
converted.append('{0}={1}'.format(key, arg[key]))
|
||||
else:
|
||||
converted.append(arg)
|
||||
|
|
Loading…
Add table
Reference in a new issue