From 1c253396bb4bcfffbc845f2214d3bcf979784d70 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Tue, 28 Apr 2026 00:38:53 +0000 Subject: [PATCH] core/util: fix tiny utc covnersion error --- core/util.py | 2 +- 1 file(s) changed, 1 insertion(s)(+), 1 deletion(s)(-) diff --git a/core/util.py b/core/util.py --- a/core/util.py +++ b/core/util.py @@ -10,7 +10,7 @@ def format_datetime_utc(value: str) -> str: """Format an ISO datetime string as UTC.""" - dt = datetime.fromisoformat(value) + dt = datetime.fromisoformat(value).astimezone(timezone.utc) return dt.strftime("%Y-%m-%d %H:%M UTC") -- tangled.sh