[Python-checkins] Fix a minor grammar issue in the logging cookbook (GH-3136)

Brett Cannon webhook-mailer at python.org
Fri Aug 18 13:00:34 EDT 2017


https://github.com/python/cpython/commit/a3110a0133db6d2a5308700d68f57a7bbcfd4c30
commit: a3110a0133db6d2a5308700d68f57a7bbcfd4c30
branch: master
author: Brett Cannon <brettcannon at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2017-08-18T10:00:31-07:00
summary:

Fix a minor grammar issue in the logging cookbook (GH-3136)

files:
M Doc/howto/logging-cookbook.rst

diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst
index 6498ea56957..24cf76b8ba4 100644
--- a/Doc/howto/logging-cookbook.rst
+++ b/Doc/howto/logging-cookbook.rst
@@ -1055,7 +1055,7 @@ to indicate additional contextual information to be added to the log). So
 you cannot directly make logging calls using :meth:`str.format` or
 :class:`string.Template` syntax, because internally the logging package
 uses %-formatting to merge the format string and the variable arguments.
-There would no changing this while preserving backward compatibility, since
+There would be no changing this while preserving backward compatibility, since
 all logging calls which are out there in existing code will be using %-format
 strings.
 



More information about the Python-checkins mailing list