delete_old_oci_images: fix old f-string format
Signed-off-by: Clement Verna <cverna@tutanota.com>
This commit is contained in:
parent
8093e55cdd
commit
9ec1b2190b
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ def main():
|
||||||
image = resp.json()
|
image = resp.json()
|
||||||
# Log the repositories that don't have any tags
|
# Log the repositories that don't have any tags
|
||||||
if image["tags"] is None:
|
if image["tags"] is None:
|
||||||
result["stdout_lines"].append("{repo} does not have any tags".format(repo))
|
result["stdout_lines"].append("{} does not have any tags".format(repo))
|
||||||
continue
|
continue
|
||||||
# For each tag get the maninfest
|
# For each tag get the maninfest
|
||||||
for tag in image["tags"]:
|
for tag in image["tags"]:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue