diff options
author | Georg Brandl <georg@python.org> | 2008-03-13 07:15:56 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-03-13 07:15:56 (GMT) |
commit | d85a13a9544b8dc31f4f83da51956f7caa93b166 (patch) | |
tree | 21749f2d326806c70b965bf684308255eb6d888b /Doc | |
parent | 513460f80d3188978bdc5bc47936b1d0322edf9f (diff) | |
download | cpython-d85a13a9544b8dc31f4f83da51956f7caa93b166.zip cpython-d85a13a9544b8dc31f4f83da51956f7caa93b166.tar.gz cpython-d85a13a9544b8dc31f4f83da51956f7caa93b166.tar.bz2 |
#2265: fix example.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/mailbox.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/mailbox.rst b/Doc/library/mailbox.rst index 972ce70..c918953 100644 --- a/Doc/library/mailbox.rst +++ b/Doc/library/mailbox.rst @@ -1630,7 +1630,7 @@ format-specific information that can be converted:: destination = mailbox.MH('~/Mail') destination.lock() for message in mailbox.Babyl('~/RMAIL'): - destination.add(MHMessage(message)) + destination.add(mailbox.MHMessage(message)) destination.flush() destination.unlock() |