From: Raymond Hettinger Date: Sat, 8 Nov 2003 11:40:03 +0000 (+0000) Subject: SF bug #835457: Small typo in logging documentation X-Git-Tag: v2.4a1~1316 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e21f6066574cfecbf0f5783ae924309a1afba0b0;p=python SF bug #835457: Small typo in logging documentation --- diff --git a/Lib/logging/handlers.py b/Lib/logging/handlers.py index 7ed1135339..26ca8adc84 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)