diff options
author | Brett Cannon <brettcannon@users.noreply.github.com> | 2017-08-18 17:00:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-18 17:00:31 (GMT) |
commit | a3110a0133db6d2a5308700d68f57a7bbcfd4c30 (patch) | |
tree | 2723c0705857d861ed90c4a1b0e32230106751fa | |
parent | 92b1f90143286385c0ff5be98d3721b90580a912 (diff) | |
download | cpython-a3110a0133db6d2a5308700d68f57a7bbcfd4c30.zip cpython-a3110a0133db6d2a5308700d68f57a7bbcfd4c30.tar.gz cpython-a3110a0133db6d2a5308700d68f57a7bbcfd4c30.tar.bz2 |
Fix a minor grammar issue in the logging cookbook (GH-3136)
-rw-r--r-- | Doc/howto/logging-cookbook.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index 6498ea5..24cf76b 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. |