Commit 6f981de8 authored by Jérome Perrin's avatar Jérome Perrin

ERP5Type/tests/utils: WIP py3

parent 53eb58b0
......@@ -105,6 +105,8 @@ class DummyMailHostMixin(object):
@staticmethod
def _decodeMessage(messageText):
""" Decode message"""
if six.PY3 and isinstance(messageText, bytes):
messageText = messageText.decode()
message_text = messageText
for part in message_from_string(messageText).walk():
if part.get_content_type() in ['text/plain', 'text/html' ] \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment