[Python-checkins] r61177 - python/trunk/Doc/library/logging.rst

georg.brandl python-checkins at python.org
Sun Mar 2 15:15:04 CET 2008


Author: georg.brandl
Date: Sun Mar  2 15:15:04 2008
New Revision: 61177

Modified:
   python/trunk/Doc/library/logging.rst
Log:
Fix factual error.


Modified: python/trunk/Doc/library/logging.rst
==============================================================================
--- python/trunk/Doc/library/logging.rst	(original)
+++ python/trunk/Doc/library/logging.rst	Sun Mar  2 15:15:04 2008
@@ -1667,11 +1667,12 @@
    | ``'midnight'`` | Roll over at midnight |
    +----------------+-----------------------+
 
-   If *backupCount* is non-zero, the system will save old log files by appending
-   extensions to the filename. The extensions are date-and-time based, using the
-   strftime format ``%Y-%m-%d_%H-%M-%S`` or a leading portion thereof, depending on
-   the rollover interval. At most *backupCount* files will be kept, and if more
-   would be created when rollover occurs, the oldest one is deleted.
+   The system will save old log files by appending extensions to the filename.
+   The extensions are date-and-time based, using the strftime format
+   ``%Y-%m-%d_%H-%M-%S`` or a leading portion thereof, depending on the rollover
+   interval. If *backupCount* is nonzero, at most *backupCount* files will be
+   kept, and if more would be created when rollover occurs, the oldest one is
+   deleted.
 
 
 .. method:: TimedRotatingFileHandler.doRollover()


More information about the Python-checkins mailing list