From 8070f79164b202c0b5032f2958afc75f9c6b0ab6 Mon Sep 17 00:00:00 2001 From: Clair Delafuente Date: Tue, 14 Oct 2025 21:10:08 -0400 Subject: [PATCH] yyyy-mm-dd --- cvmsentry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cvmsentry.py b/cvmsentry.py index b9e1c2a..6705e3b 100644 --- a/cvmsentry.py +++ b/cvmsentry.py @@ -66,7 +66,7 @@ async def periodic_snapshot_task(): continue # Create directory structure if it doesn't exist - date_str = datetime.now().strftime("%b-%d-%Y") + date_str = datetime.now().strftime("%Y-%m-%d") snapshot_dir = os.path.join(config.log_directory, "webp", vm_name, date_str) os.makedirs(snapshot_dir, exist_ok=True)