commit | d85a13a9544b8dc31f4f83da51956f7caa93b166 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Thu Mar 13 07:15:56 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Thu Mar 13 07:15:56 2008 +0000 |
tree | 21749f2d326806c70b965bf684308255eb6d888b | |
parent | 513460f80d3188978bdc5bc47936b1d0322edf9f [diff] [blame] |
#2265: fix example.
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 @@ 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()