diff options
author | Raymond Hettinger <python@rcn.com> | 2003-11-08 11:40:03 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-11-08 11:40:03 (GMT) |
commit | e21f6066574cfecbf0f5783ae924309a1afba0b0 (patch) | |
tree | 8af284a17ec555d7463e0e0d60eeb2093eb86f79 /Lib | |
parent | c24c9106e826aa3a6d64c60b76ee015210aea2d1 (diff) | |
download | cpython-e21f6066574cfecbf0f5783ae924309a1afba0b0.zip cpython-e21f6066574cfecbf0f5783ae924309a1afba0b0.tar.gz cpython-e21f6066574cfecbf0f5783ae924309a1afba0b0.tar.bz2 |
SF bug #835457: Small typo in logging documentation
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/logging/handlers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/handlers.py b/Lib/logging/handlers.py index 7ed1135..26ca8ad 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) |