From 650b47477e9bdac34525cf1ef97d7b692ebca832 Mon Sep 17 00:00:00 2001 From: dgw Date: Thu, 26 Oct 2023 23:44:33 -0500 Subject: [PATCH] config: space before zone in `default_time_format`'s default --- sopel/config/core_section.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sopel/config/core_section.py b/sopel/config/core_section.py index bdb220cf2..15778927c 100644 --- a/sopel/config/core_section.py +++ b/sopel/config/core_section.py @@ -489,10 +489,10 @@ class CoreSection(StaticSection): """ default_time_format = ValidatedAttribute('default_time_format', - default='%Y-%m-%d - %T%Z') + default='%Y-%m-%d - %T %Z') """The default format to use for time in messages. - :default: ``%Y-%m-%d - %T%Z`` + :default: ``%Y-%m-%d - %T %Z`` Used when plugins format times with :func:`sopel.tools.time.format_time`. @@ -500,7 +500,7 @@ class CoreSection(StaticSection): .. code-block:: ini - default_time_format = %Y-%m-%d - %T%Z + default_time_format = %Y-%m-%d - %T %Z .. seealso::