mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
add missing comma
This commit is contained in:
parent
775ea73578
commit
63c974a3d0
1 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ def __virtual__():
|
|||
|
||||
def _get_components(type_regex, plural_type, install_value, image=None):
|
||||
cmd = ['DISM',
|
||||
'/English'
|
||||
'/English',
|
||||
'/Image:{0}'.format(image) if image else '/Online',
|
||||
'/Get-{0}'.format(plural_type)]
|
||||
out = __salt__['cmd.run'](cmd)
|
||||
|
@ -163,7 +163,7 @@ def get_capabilities(image=None):
|
|||
'Windows: {0}'.format(__grains__['osversion']))
|
||||
|
||||
cmd = ['DISM',
|
||||
'/English'
|
||||
'/English',
|
||||
'/Image:{0}'.format(image) if image else '/Online',
|
||||
'/Get-Capabilities']
|
||||
out = __salt__['cmd.run'](cmd)
|
||||
|
|
Loading…
Add table
Reference in a new issue