From b8f34a57f94fb2a80d9629d98ea3e83e59f0606d Mon Sep 17 00:00:00 2001 From: Raimund Klink Date: Tue, 2 Apr 2024 17:01:22 +0200 Subject: [PATCH] fix/Use the international standard date format The current format ('%m/%d/%Y') is confusing. Better use the standard. https://en.wikipedia.org/wiki/ISO_8601#Calendar_dates --- manual/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/conf.py b/manual/conf.py index d4fd25446..2edde1c4b 100644 --- a/manual/conf.py +++ b/manual/conf.py @@ -187,7 +187,7 @@ html_static_path = ["../build_files/theme"] # every page bottom, using the given strftime() format. # The empty string is equivalent to '%b %d, %Y' # (or a locale-dependent equivalent). -html_last_updated_fmt = '%m/%d/%Y' +html_last_updated_fmt = '%Y-%m-%d' # Additional templates that should be rendered to HTML pages, # must be a dictionary that maps document names to template names. -- 2.30.2