Skip to content

Commit

Permalink
[Bug #817178] Fix incorrect arguments in example, noted by Terry Reedy
Browse files Browse the repository at this point in the history
  • Loading branch information
akuchling committed Oct 31, 2003
1 parent 2389c41 commit b4b9ced
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/lib/emailmessage.tex
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
from cStringIO import StringIO
from email.Generator import Generator
fp = StringIO()
g = Generator(mangle_from_=False, maxheaderlen=60)
g = Generator(fp, mangle_from_=False, maxheaderlen=60)
g.flatten(msg)
text = fp.getvalue()
\end{verbatim}
Expand Down

0 comments on commit b4b9ced

Please sign in to comment.