From 9ec1b2190b8d552cb7f8add6880648516fd70256 Mon Sep 17 00:00:00 2001 From: Clement Verna Date: Tue, 4 Jun 2019 13:14:45 +0200 Subject: [PATCH] delete_old_oci_images: fix old f-string format Signed-off-by: Clement Verna --- library/delete_old_oci_images.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/delete_old_oci_images.py b/library/delete_old_oci_images.py index 26bfbf9a8d..0924684aea 100644 --- a/library/delete_old_oci_images.py +++ b/library/delete_old_oci_images.py @@ -115,7 +115,7 @@ def main(): image = resp.json() # Log the repositories that don't have any tags 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 # For each tag get the maninfest for tag in image["tags"]: