diff --git a/addons/crm/scripts/tinyerp-mailgate/tinyerp-mailgate.py b/addons/crm/scripts/tinyerp-mailgate/tinyerp-mailgate.py index 4ca6de870b4..f93f387a48d 100755 --- a/addons/crm/scripts/tinyerp-mailgate/tinyerp-mailgate.py +++ b/addons/crm/scripts/tinyerp-mailgate/tinyerp-mailgate.py @@ -125,7 +125,6 @@ class email_parser(object): for part in msg.walk(): if part.get_content_maintype() == 'multipart': continue - print part.get_content_maintype() ,' - ', part.get_content_subtype(); if part.get_content_maintype()=='text' and part.get_content_subtype() == 'plain': message['body'] += part.get_payload(decode=True).decode(part.get_charsets()[0])