Skip to content

Commit

Permalink
[doc] Correct a grammatical error in a docstring. (GH-93441)
Browse files Browse the repository at this point in the history
  • Loading branch information
colin99d authored Jun 4, 2022
1 parent e12f34b commit 3d647e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/logging/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1498,7 +1498,7 @@ def info(self, msg, *args, **kwargs):
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)
Expand Down

0 comments on commit 3d647e7

Please sign in to comment.