Skip to content

Commit d9b3e23

Browse files
authored
Merge pull request #1088 from maykinmedia/fix/2139-fix-staus-tuple
[#2139] Fixed tuple in case status email
2 parents b3116cb + d31e126 commit d9b3e23

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/open_inwoner/openzaak/notifications.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -592,9 +592,10 @@ def send_case_update_email(
592592
"case_link": case_detail_url,
593593
}
594594
if status:
595-
context["status_description"] = (
596-
translate_single_status(status.statustype.omschrijving),
595+
context["status_description"] = translate_single_status(
596+
status.statustype.omschrijving
597597
)
598+
598599
if extra_context:
599600
context.update(extra_context)
600601
template.send_email([user.email], context)

0 commit comments

Comments
 (0)