From: Vinay Sajip Date: Mon, 26 Mar 2012 16:06:44 +0000 (+0100) Subject: Minor documentation tweak. X-Git-Tag: v2.7.4rc1~944 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=49d5fbab87d95448c5710e5f509fc7e9c6ccee91;p=thirdparty%2FPython%2Fcpython.git Minor documentation tweak. --- diff --git a/Doc/library/logging.handlers.rst b/Doc/library/logging.handlers.rst index c94445423931..1d9b13df3e87 100644 --- a/Doc/library/logging.handlers.rst +++ b/Doc/library/logging.handlers.rst @@ -650,7 +650,7 @@ event of a certain severity or greater is seen. :class:`BufferingHandler`, which is an abstract class. This buffers logging records in memory. Whenever each record is added to the buffer, a check is made by calling :meth:`shouldFlush` to see if the buffer should be flushed. If it -should, then :meth:`flush` is expected to do the needful. +should, then :meth:`flush` is expected to do the flushing. .. class:: BufferingHandler(capacity)