From 37fa642dcabaf7164db8658b3a18c727d24f35c5 Mon Sep 17 00:00:00 2001 From: Jose Date: Wed, 3 Dec 2025 17:24:37 +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 e2595d4..7cd136e 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 | float | string | to_datetime(timestamp=True) | strftime('%Y-%m-%d %H:%M:%S') }} + Last modified: {{ debian_img_final.stat.mtime | to_datetime | strftime('%Y-%m-%d %H:%M:%S') }}