From 8da03aebb0e2ff339800cbb28027c48c08f0ec20 Mon Sep 17 00:00:00 2001 From: cuom1999 Date: Tue, 10 Oct 2023 20:49:23 -0500 Subject: [PATCH] Fix new notif --- judge/admin/problem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/judge/admin/problem.py b/judge/admin/problem.py index b5cd56f..1a47d37 100644 --- a/judge/admin/problem.py +++ b/judge/admin/problem.py @@ -382,7 +382,7 @@ class ProblemAdmin(CompareVersionAdmin): category = "Problem public: " + str(obj.is_public) if orgs: category += " (" + ", ".join(orgs) + ")" - make_notification(users, html, category, request.profile) + make_notification(users, category, html, request.profile) def construct_change_message(self, request, form, *args, **kwargs): if form.cleaned_data.get("change_message"):