diff options
author | VMan <vayidm@users.noreply.github.com> | 2023-02-26 13:15:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-26 13:15:27 (GMT) |
commit | 6daf42b28e1c6d5f0c1a6350cfcc382789e11293 (patch) | |
tree | 60d021e520a7d9c2c9fb4d3613dc9debf6370c51 /Doc/howto | |
parent | bcadcde7122f6d3d08b35671d67e105149371a2f (diff) | |
download | cpython-6daf42b28e1c6d5f0c1a6350cfcc382789e11293.zip cpython-6daf42b28e1c6d5f0c1a6350cfcc382789e11293.tar.gz cpython-6daf42b28e1c6d5f0c1a6350cfcc382789e11293.tar.bz2 |
[doc] Improve grammar/fix missing word (GH-102060)
Diffstat (limited to 'Doc/howto')
-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 7661249..1a0afb6 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -2538,7 +2538,7 @@ should be logged, or the ``extra`` keyword parameter 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 +string and the variable arguments. 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. |