EmailClient: fix typo

This commit is contained in:
Benjamin Renard 2021-03-24 19:36:07 +01:00
parent 76e28d51cd
commit b6465f0ce8

View file

@ -376,8 +376,8 @@ if __name__ == '__main__':
MakoTemplate("Just a test email sent at ${sent_date}.")
),
html=(
"<strong>Just a test email.</stong> <small>(sent at {sent_date})</small>" if not options.test_mako else
MakoTemplate("<strong>Just a test email.</stong> <small>(sent at ${sent_date})</small>")
"<strong>Just a test email.</strong> <small>(sent at {sent_date})</small>" if not options.test_mako else
MakoTemplate("<strong>Just a test email.</strong> <small>(sent at ${sent_date})</small>")
)
)
)