fix shutdown in #40

This commit is contained in:
b3yond 2018-10-07 23:27:06 +02:00
parent 9a3c09b119
commit bbe27e2586

View file

@ -63,6 +63,8 @@ def make_report(msg, user):
text.append(part.get_payload())
elif part.get_content_type() == "multipart/mixed":
for p in part:
if isinstance(p, str):
text.append(p)
if p.get_content_type() == "text":
text.append(part.get_payload())
else: