From 9f2b8de1314cce1e8bb2d218e4d7b1fe7d4477e8 Mon Sep 17 00:00:00 2001 From: Dan Hamik Date: Tue, 26 Nov 2024 00:53:24 -0600 Subject: [PATCH 1/2] Added a space for last updated. --- libnotices.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnotices.py b/libnotices.py index a17f0e4..f7f346f 100644 --- a/libnotices.py +++ b/libnotices.py @@ -192,7 +192,7 @@ TD {border-width: 1px; padding: 3px; border-style: solid; border-color: black;} """ tableend="
" timezone = ZoneInfo("America/Chicago") -returntable="Last Updated" + str(datetime.datetime.now(timezone)) +returntable="Last Updated " + str(datetime.datetime.now(timezone)) returntable+='
Click Here to visit the site.' returntable += """
-- 2.47.1 From e91465604179c57241b875f5c02f8cd15a9a389e Mon Sep 17 00:00:00 2001 From: Dan Hamik Date: Tue, 26 Nov 2024 00:56:41 -0600 Subject: [PATCH 2/2] newline --- libnotices.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnotices.py b/libnotices.py index f7f346f..c7bcdb0 100644 --- a/libnotices.py +++ b/libnotices.py @@ -192,7 +192,7 @@ TD {border-width: 1px; padding: 3px; border-style: solid; border-color: black;} """ tableend="
" timezone = ZoneInfo("America/Chicago") -returntable="Last Updated " + str(datetime.datetime.now(timezone)) +returntable="Last Updated
" + str(datetime.datetime.now(timezone)) returntable+='
Click Here to visit the site.' returntable += """ -- 2.47.1