From 1043889a305fe359708b0157ca59ff8be361f190 Mon Sep 17 00:00:00 2001 From: Aevann Date: Mon, 19 Feb 2024 01:22:09 +0200 Subject: [PATCH] fix this https://rdrama.net/h/changelog/post/165657/changelog-megathread-marseynotes/5971305#context --- files/routes/groups.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/groups.py b/files/routes/groups.py index 401ad86bd..0dfddcace 100644 --- a/files/routes/groups.py +++ b/files/routes/groups.py @@ -309,7 +309,7 @@ def group_usurp(v, group_name): if not group: abort(404) if v.mods_group(group): - abort(403, f"You're a mod of /h/{group.name} can't usurp it!") + abort(403, f"You're a mod of !{group.name} can't usurp it!") if not v.is_member_of_group(group): abort(403, "Only members of groups can usurp them!")