]> granicus.if.org Git - python/commitdiff
Fix factual error.
authorGeorg Brandl <georg@python.org>
Sun, 2 Mar 2008 14:15:04 +0000 (14:15 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 2 Mar 2008 14:15:04 +0000 (14:15 +0000)
Doc/library/logging.rst

index dc2555f5919671067522e8ee7f2b8788a923092c..0b2181c28c3e7759280b5373a3aa5fee773cd620 100644 (file)
@@ -1667,11 +1667,12 @@ timed intervals.
    | ``'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()