Skip to content

Commit

Permalink
[#2139] Fixed tuple in case status email
Browse files Browse the repository at this point in the history
  • Loading branch information
Bart van der Schoor authored and alextreme committed Mar 14, 2024
1 parent 7e47793 commit 817a909
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/open_inwoner/openzaak/notifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -588,9 +588,10 @@ def send_case_update_email(
"case_link": case_detail_url,
}
if status:
context["status_description"] = (
translate_single_status(status.statustype.omschrijving),
context["status_description"] = translate_single_status(
status.statustype.omschrijving
)

if extra_context:
context.update(extra_context)
template.send_email([user.email], context)
Expand Down

0 comments on commit 817a909

Please sign in to comment.