diff options
author | Colin Delahunty <72827203+colin99d@users.noreply.github.com> | 2022-06-04 16:42:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-04 16:42:08 (GMT) |
commit | 3d647e70cf4fd0e7cef68ed6662de3cb2cb0d63d (patch) | |
tree | 7f2079c8e74bc3b099a0f240495a9c199591e113 /Lib/logging | |
parent | e12f34b6d8200508bd50cdc9c6c5637732ff56e7 (diff) | |
download | cpython-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__.py | 2 |
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) |