From 3d647e70cf4fd0e7cef68ed6662de3cb2cb0d63d Mon Sep 17 00:00:00 2001 From: Colin Delahunty <72827203+colin99d@users.noreply.github.com> Date: Sat, 4 Jun 2022 12:42:08 -0400 Subject: [doc] Correct a grammatical error in a docstring. (GH-93441) --- Lib/logging/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v0.12