From: Brett Cannon Date: Fri, 18 Aug 2017 17:00:31 +0000 (-0700) Subject: Fix a minor grammar issue in the logging cookbook (GH-3136) X-Git-Tag: v3.7.0a1~255 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a3110a0133db6d2a5308700d68f57a7bbcfd4c30;p=python Fix a minor grammar issue in the logging cookbook (GH-3136) --- diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index 6498ea5695..24cf76b8ba 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.