Fixing the file call in the rfc822.Message replacement example.

This commit is contained in:
Sean Reifscheider 2010-03-20 00:05:42 +00:00
parent 95ce1fcf8b
commit b2efeff4a5
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
from email.parser import Parser
# If the e-mail headers are in a file, uncomment this line:
#headers = Parser().parse(messagefile)
#headers = Parser().parse(open(messagefile, 'r'))
# Or for parsing headers in a string, use:
headers = Parser().parsestr('From: <user@example.com>\n'