From 956040a7cce05aada13e833478273485f7f74722 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Sat, 14 Dec 2013 12:42:29 +0200 Subject: [PATCH] #19981: fix typo in email.mailbox docs. Patch by Claudiu Popa. --- Doc/library/mailbox.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/mailbox.rst b/Doc/library/mailbox.rst index d668a6eacb3..0478ed1087b 100644 --- a/Doc/library/mailbox.rst +++ b/Doc/library/mailbox.rst @@ -1550,7 +1550,7 @@ programs, mail loss due to interruption of the program, or premature termination due to malformed messages in the mailbox:: import mailbox - import email.Errors + import email.errors list_names = ('python-list', 'python-dev', 'python-bugs') @@ -1560,7 +1560,7 @@ due to malformed messages in the mailbox:: for key in inbox.iterkeys(): try: message = inbox[key] - except email.Errors.MessageParseError: + except email.errors.MessageParseError: continue # The message is malformed. Just leave it. for name in list_names: