pythonでメール受信したいのだがデコード出来ずに困ってる。

コレで動いてたのだが最近エラーが出るようになった。asciiじゃない文字が含まれてるよエラー。
どうすれば良いのか分かる方いませんか?

class MailHandler(InboundMailHandler):
def receive(self, message):
bodies = message.bodies(content_type='text/plain')
body_line = ""
for body in bodies:
h = decode_header(body[1].decode())
body_line = body_line unicode(h[0][0], "iso-2022-jp")