summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHansraj Das <raj.das.136@gmail.com>2020-10-04 16:09:26 (GMT)
committerGitHub <noreply@github.com>2020-10-04 16:09:26 (GMT)
commita619af43ccd10bab363b1e59814a2e2727422545 (patch)
tree06ea851af3165b83605baf9bf16892d4559492d8
parent1ed54435268b285964141fb74d47ceaa33ea79ab (diff)
downloadcpython-a619af43ccd10bab363b1e59814a2e2727422545.zip
cpython-a619af43ccd10bab363b1e59814a2e2727422545.tar.gz
cpython-a619af43ccd10bab363b1e59814a2e2727422545.tar.bz2
Delete extra 'the' from `Formatter` class docstring (GH-22530)
-rw-r--r--Lib/logging/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py
index d8a88db..787cb4e 100644
--- a/Lib/logging/__init__.py
+++ b/Lib/logging/__init__.py
@@ -523,7 +523,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