diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/logging/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index 104b0be..a7bd890 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -471,7 +471,7 @@ class Formatter(object): use one of %-formatting, :meth:`str.format` (``{}``) formatting or :class:`string.Template` formatting in your format string. - .. versionchanged: 3.2 + .. versionchanged:: 3.2 Added the ``style`` parameter. """ if style not in _STYLES: @@ -700,7 +700,7 @@ class Filterer(object): this and the record is then dropped. Returns a zero value if a record is to be dropped, else non-zero. - .. versionchanged: 3.2 + .. versionchanged:: 3.2 Allow filters to be just callables. """ |