Skip to content
This repository has been archived by the owner on Jul 22, 2023. It is now read-only.

Commit

Permalink
Update email_message_list_renderer.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Feb 4, 2023
1 parent c7492df commit f1f787c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pymmails/render/email_message_list_renderer.py
Expand Up @@ -151,7 +151,7 @@ def iter_on_mail():
if attachments is not None:
for att in attachments:
satt = att.replace("\\", "/")
json_attachments.append(dict(a=satt, name=satt))
json_attachments.append(dict(a=satt, name=satt)) # pylint: disable=R1735
content.append(h)
return "\n".join(content), css, json_attachments

Expand Down

0 comments on commit f1f787c

Please sign in to comment.