From 9453031df34446e9ef8d5eb75351c8b00b53285c Mon Sep 17 00:00:00 2001 From: Brian Read Date: Sat, 12 Apr 2025 12:03:15 +0100 Subject: [PATCH] Restore greyed print date (regression) --- root/usr/bin/mailstats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/usr/bin/mailstats.py b/root/usr/bin/mailstats.py index 92d6c01..f3fbf3b 100644 --- a/root/usr/bin/mailstats.py +++ b/root/usr/bin/mailstats.py @@ -1697,7 +1697,7 @@ if __name__ == "__main__": with open(template_path, 'r') as template_file: template_content = template_file.read() #Use the hello string to create a suitable heading for the web page - html_title = hello_string.replace("Printed at:"," Printed at:") + html_title = hello_string.replace("printed at:"," printed at:") html_title += "" # Create a Chameleon template instance