Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
140
Merge Requests
140
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
4f3b2675
Commit
4f3b2675
authored
Jul 23, 2024
by
Jérome Perrin
Committed by
Arnaud Fontaine
Jul 31, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
py3: fix return type of DummyMailHostMixin.getMessageList
mail body is str
parent
f3780243
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
product/ERP5Type/tests/utils.py
product/ERP5Type/tests/utils.py
+10
-3
No files found.
product/ERP5Type/tests/utils.py
View file @
4f3b2675
...
...
@@ -30,6 +30,7 @@
"""
import
contextlib
from
datetime
import
datetime
import
email
import
errno
import
os
import
logging
...
...
@@ -49,7 +50,6 @@ from Zope2.Startup.datatypes import ZopeDatabase
from
Testing
import
ZopeTestCase
import
Products.ERP5Type
from
Products.MailHost.MailHost
import
MailHost
from
email
import
message_from_string
from
Products.ERP5Type.Globals
import
PersistentMapping
from
Products.ERP5Type.Utils
import
simple_decorator
from
Products.ZSQLCatalog.SQLCatalog
import
Catalog
...
...
@@ -106,12 +106,19 @@ class DummyMailHostMixin(object):
@
staticmethod
def
_decodeMessage
(
messageText
):
# type: (bytes) -> str
""" Decode message"""
if
six
.
PY3
:
message
=
email
.
message_from_bytes
(
messageText
)
else
:
message
=
email
.
message_from_string
(
messageText
)
message_text
=
messageText
for
part
in
message
_from_string
(
messageText
)
.
walk
():
for
part
in
message
.
walk
():
if
part
.
get_content_type
()
in
[
'text/plain'
,
'text/html'
]
\
and
not
part
.
is_multipart
():
message_text
=
part
.
get_payload
(
decode
=
1
)
message_text
=
part
.
get_payload
(
decode
=
True
)
if
six
.
PY3
:
message_text
=
message_text
.
decode
(
part
.
get_content_charset
(
'ascii'
))
return
message_text
security
.
declarePrivate
(
'getMessageList'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment