[doc] Correct a grammatical error in a docstring. (GH-93441)

This commit is contained in:
Colin Delahunty 2022-06-04 12:42:08 -04:00 committed by GitHub
parent e12f34b6d8
commit 3d647e70cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)