From 211eb8f52126354f0200f0cc2b3967ed8889a9c6 Mon Sep 17 00:00:00 2001 From: Jose Date: Tue, 2 Dec 2025 21:27:05 +0100 Subject: [PATCH] Fix datetime formatting for last modified image info in download-image.yml --- tasks/download-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/download-image.yml b/tasks/download-image.yml index 4aa084a..d8f6390 100644 --- a/tasks/download-image.yml +++ b/tasks/download-image.yml @@ -38,4 +38,4 @@ msg: | Image cached at: {{ debian_image_path }} Size: {{ debian_img_final.stat.size | int / 1024 / 1024 / 1024 | round(2) }} GB - Last modified: {{ debian_img_final.stat.mtime | int | to_datetime('%Y-%m-%d %H:%M:%S') }} + Last modified: {{ debian_img_final.stat.mtime | int | strftime('%Y-%m-%d %H:%M:%S') }}