Skip to content
This repository was archived by the owner on Sep 12, 2018. It is now read-only.

Commit cc4afab

Browse files
committed
Fixed get_tags whe using storage_path
1 parent 4daabfb commit cc4afab

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docker_registry/tags.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ def get_tags(namespace, repository):
7070
if not full_tag_name.startswith('tag_'):
7171
continue
7272
tag_name = full_tag_name[4:]
73-
tag_content = store.get_content(fname)
73+
tag_content = store.get_content(
74+
store.tag_path(namespace, repository, tag_name)
75+
)
7476
yield (tag_name, tag_content)
7577

7678

0 commit comments

Comments
 (0)