From: Colin Delahunty <72827203+colin99d@users.noreply.github.com> Date: Sat, 4 Jun 2022 16:42:08 +0000 (-0400) Subject: [doc] Correct a grammatical error in a docstring. (GH-93441) X-Git-Tag: v3.12.0a1~1359 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3d647e70cf4fd0e7cef68ed6662de3cb2cb0d63d;p=thirdparty%2FPython%2Fcpython.git [doc] Correct a grammatical error in a docstring. (GH-93441) --- diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index e7636e18bec4..20ab191bdb45 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)