From fe183b7fef9288735a7fe80cf1cf6774a9425c56 Mon Sep 17 00:00:00 2001 From: Aevann Date: Mon, 17 Jul 2023 17:49:07 +0300 Subject: [PATCH] add exclamation mark --- files/routes/votes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/votes.py b/files/routes/votes.py index 79bc0a786f..c086d5f65b 100644 --- a/files/routes/votes.py +++ b/files/routes/votes.py @@ -56,7 +56,7 @@ def vote_post_comment(target_id, new, v, cls, vote_cls): if new not in {"-1", "0", "1"}: abort(400) if request.headers.get("Authorization"): - abort(403, "Bots aren't allowed to vote right now") + abort(403, "Bots aren't allowed to vote right now!") new = int(new) target = None