summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-11-08 11:40:03 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-11-08 11:40:03 (GMT)
commite21f6066574cfecbf0f5783ae924309a1afba0b0 (patch)
tree8af284a17ec555d7463e0e0d60eeb2093eb86f79 /Lib
parentc24c9106e826aa3a6d64c60b76ee015210aea2d1 (diff)
downloadcpython-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.py2
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)