summaryrefslogtreecommitdiffstats
path: root/Lib/logging
diff options
context:
space:
mode:
authorColin Delahunty <72827203+colin99d@users.noreply.github.com>2022-06-04 16:42:08 (GMT)
committerGitHub <noreply@github.com>2022-06-04 16:42:08 (GMT)
commit3d647e70cf4fd0e7cef68ed6662de3cb2cb0d63d (patch)
tree7f2079c8e74bc3b099a0f240495a9c199591e113 /Lib/logging
parente12f34b6d8200508bd50cdc9c6c5637732ff56e7 (diff)
downloadcpython-3d647e70cf4fd0e7cef68ed6662de3cb2cb0d63d.zip
cpython-3d647e70cf4fd0e7cef68ed6662de3cb2cb0d63d.tar.gz
cpython-3d647e70cf4fd0e7cef68ed6662de3cb2cb0d63d.tar.bz2
[doc] Correct a grammatical error in a docstring. (GH-93441)
Diffstat (limited to 'Lib/logging')
-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 e7636e1..20ab191 100644
--- a/Lib/logging/__init__.py
+++ b/Lib/logging/__init__.py
@@ -1498,7 +1498,7 @@ class Logger(Filterer):
To pass exception information, use the keyword argument exc_info with
a true value, e.g.
- logger.info("Houston, we have a %s", "interesting problem", exc_info=1)
+ logger.info("Houston, we have a %s", "notable problem", exc_info=1)
"""
if self.isEnabledFor(INFO):
self._log(INFO, msg, args, **kwargs)