Skip to content

Commit a1debd4

Browse files
committed
fix
1 parent cc96dc2 commit a1debd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: mail_outbound_static/tests/test_ir_mail_server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def test_send_email_injects_from_with_canonical(self):
125125
proper handling in the split.
126126
"""
127127
user = "Test < User"
128-
self.message.replace_header("From", "%s <[email protected]>" % user)
128+
self.message.replace_header("From", "{} <[email protected]>".format(user))
129129
bounce_parameter = self.parameter_model.search(
130130
[("key", "=", "mail.bounce.alias")]
131131
)

0 commit comments

Comments
 (0)