8000 Grammatical error in info docstring by colin99d · Pull Request #93441 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Grammatical error in info docstring #93441

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 4, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update __init__.py
  • Loading branch information
colin99d authored Jun 3, 2022
commit 64e8ee39aa3b017223293719b608bded2d536627
2 changes: 1 addition & 1 deletion Lib/logging/__init__.py
5D66
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 an %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