diff options
author | Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-10-04 16:31:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-04 16:31:52 (GMT) |
commit | 9c2d46ac20e87dc82db155b0e01b2511934e7f63 (patch) | |
tree | af21d3afa710f129dddebf45b8796d6b1e8a9fcc | |
parent | faa8c6a8f1fe9c3bac31061e8a59a686b983ebb8 (diff) | |
download | cpython-9c2d46ac20e87dc82db155b0e01b2511934e7f63.zip cpython-9c2d46ac20e87dc82db155b0e01b2511934e7f63.tar.gz cpython-9c2d46ac20e87dc82db155b0e01b2511934e7f63.tar.bz2 |
Delete extra 'the' from `Formatter` class docstring (GH-22530) (GH-22542)
(cherry picked from commit a619af43ccd10bab363b1e59814a2e2727422545)
-rw-r--r-- | Lib/logging/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index 403dc81..4013e56 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -509,7 +509,7 @@ class Formatter(object): responsible for converting a LogRecord to (usually) a string which can be interpreted by either a human or an external system. The base Formatter allows a formatting string to be specified. If none is supplied, the - the style-dependent default value, "%(message)s", "{message}", or + style-dependent default value, "%(message)s", "{message}", or "${message}", is used. The Formatter can be initialized with a format string which makes use of |