Skip to content

Commit

Permalink
Merge pull request #2531 from sopel-irc/default_time_format-spacing
Browse files Browse the repository at this point in the history
config: space before zone in `default_time_format`'s default
  • Loading branch information
dgw authored Nov 1, 2023
2 parents 440122d + 650b474 commit 5de26c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sopel/config/core_section.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,18 +489,18 @@ 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`.
This is equivalent to the default value:
.. code-block:: ini
default_time_format = %Y-%m-%d - %T%Z
default_time_format = %Y-%m-%d - %T %Z
.. seealso::
Expand Down

0 comments on commit 5de26c1

Please sign in to comment.