Skip to content

Commit 3d647e7

Browse files
authored
[doc] Correct a grammatical error in a docstring. (GH-93441)
1 parent e12f34b commit 3d647e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/logging/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1498,7 +1498,7 @@ def info(self, msg, *args, **kwargs):
14981498
To pass exception information, use the keyword argument exc_info with
14991499
a true value, e.g.
15001500
1501-
logger.info("Houston, we have a %s", "interesting problem", exc_info=1)
1501+
logger.info("Houston, we have a %s", "notable problem", exc_info=1)
15021502
"""
15031503
if self.isEnabledFor(INFO):
15041504
self._log(INFO, msg, args, **kwargs)

0 commit comments

Comments
 (0)