Merge pull request #1264 from rtnpro/fix_typo_in_docker_module

Fixed typo in cloud docker module.
This commit is contained in:
Toshio Kuratomi 2015-05-06 05:57:03 -07:00
commit a6c0cf0369

View file

@ -1136,7 +1136,7 @@ class DockerManager(object):
name_list = []
matches = name in name_list
else:
details = self.client.inspect_container(i['Id'])
details = self.client.inspect_container(container['Id'])
details = _docker_id_quirk(details)
running_image = normalize_image(details['Config']['Image'])