Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jabelone committed Sep 22, 2023
1 parent 0db048a commit 7d88337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion memberportal/services/emails.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def send_single_email(

template_to_use = template_name if template_name else "email_without_button.html"
logger.debug("Using email template: " + template_to_use)
logger.debug("Using template vars: " + json.stringify(template_vars))
logger.debug("Using template vars: " + json.dumps(template_vars))

if template_vars.get("message"):
template_vars["message"] = escape(template_vars["message"]).replace(
Expand Down

0 comments on commit 7d88337

Please sign in to comment.