Removes pluralization of manager tag attribute.
This commit is contained in:
parent
87f17e7e94
commit
6b8913ff8a
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ class DockerImageManager:
|
||||||
for i in images:
|
for i in images:
|
||||||
# Docker-py version >= 0.3 (Docker API >= 1.8)
|
# Docker-py version >= 0.3 (Docker API >= 1.8)
|
||||||
if 'RepoTags' in i:
|
if 'RepoTags' in i:
|
||||||
repotag = '%s:%s' % (getattr(self, 'name', ''), getattr(self, 'tags', 'latest'))
|
repotag = '%s:%s' % (getattr(self, 'name', ''), getattr(self, 'tag', 'latest'))
|
||||||
if not self.name or repotag in i['RepoTags']:
|
if not self.name or repotag in i['RepoTags']:
|
||||||
filtered_images.append(i)
|
filtered_images.append(i)
|
||||||
# Docker-py version < 0.3 (Docker API < 1.8)
|
# Docker-py version < 0.3 (Docker API < 1.8)
|
||||||
|
|
Loading…
Reference in a new issue