mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fixes value typo for dockerio.loaded state
This commit is contained in:
parent
39fa11b696
commit
e61e1de1f5
1 changed files with 1 additions and 1 deletions
|
@ -471,7 +471,7 @@ def loaded(name, source=None, source_hash='', force=False):
|
|||
remove_info = remove_image(name)
|
||||
if not remove_info['status']:
|
||||
return _invalid(name=name,
|
||||
comment='Image could not be removed: {1}'.format(name))
|
||||
comment='Image could not be removed: {0}'.format(name))
|
||||
|
||||
load = __salt__['docker.load']
|
||||
returned = load(tmp_filename)
|
||||
|
|
Loading…
Add table
Reference in a new issue