From: Raymond Hettinger Date: Sat, 8 Nov 2003 11:41:32 +0000 (+0000) Subject: SF bug #835457: Small typo in logging documentation X-Git-Tag: v2.3.3c1~68 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3fe64a4c5f09fcdb41487fd94d609159527cb73c;p=thirdparty%2FPython%2Fcpython.git SF bug #835457: Small typo in logging documentation --- diff --git a/Lib/logging/handlers.py b/Lib/logging/handlers.py index 7ed11353399d..26ca8adc8412 100644 --- a/Lib/logging/handlers.py +++ b/Lib/logging/handlers.py @@ -96,7 +96,7 @@ class RotatingFileHandler(logging.FileHandler): Emit a record. Output the record to the file, catering for rollover as described - in setRollover(). + in doRollover(). """ if self.maxBytes > 0: # are we rolling over? msg = "%s\n" % self.format(record)