On 18 fév, 14:41, peterob <peterob...@gmail.com> wrote: > Helllo, > > I want to get the raw format of email body. the code Im using is > > for part in email.walk(): > if part.get_content_maintype() == 'multipart': > continue > if part.get_content_type() == 'text/plain': > # print part.get_content_type() > print part.get_payload(None,True) > > The problem is, that code adds one more '\n' at the and of the output > printed by get_payload(). Is that bug? > > Thanks. > > Best, > Peter
No sure to undeerstand, but print add one '\n' by itself maybe using print part.get_payload(None,True), with a "," at the end to tell print not to add a "\n" hope this help -- http://mail.python.org/mailman/listinfo/python-list