On Thursday, February 7, 2019 at 5:44:35 PM UTC-5, Israel Hands wrote:
> The node header looks like this - *b'Subject: What could Brexit mean for > your pension?* not sure why the "b' " is in there but it is in all of > them. > The 'b' prefix means that the string was actually a "bytes" type. This can be fixed by converting to unicode. The safe way to do this is by using s = g.toUnicode(s). Edward -- You received this message because you are subscribed to the Google Groups "leo-editor" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/leo-editor. For more options, visit https://groups.google.com/d/optout.
