From 5d79f41b4c0f6c73b7e3870e30112f2ce06b0ca5 Mon Sep 17 00:00:00 2001 From: agessaman Date: Sat, 21 Feb 2026 09:10:54 -0800 Subject: [PATCH] fix footer version formatting --- modules/web_viewer/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/web_viewer/app.py b/modules/web_viewer/app.py index 8684d5f..59fd497 100644 --- a/modules/web_viewer/app.py +++ b/modules/web_viewer/app.py @@ -195,8 +195,8 @@ class BotDataViewer: out["commit"] = commit or None if date_raw: try: - # %ci is ISO format; take date part only - out["date"] = date_raw.split("T")[0] + # %ci is "YYYY-MM-DD HH:MM:SS +tz"; take date part only + out["date"] = date_raw.split()[0] except IndexError: out["date"] = date_raw return out