From d8b998a3c5e9f8b6e60d4d787cc31f5510939d21 Mon Sep 17 00:00:00 2001 From: Aevann Date: Sun, 19 Feb 2023 15:24:42 +0200 Subject: [PATCH] capitalize word --- files/helpers/actions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/helpers/actions.py b/files/helpers/actions.py index 50956f73f..013b4a849 100644 --- a/files/helpers/actions.py +++ b/files/helpers/actions.py @@ -347,7 +347,7 @@ def execute_antispam_submission_check(title, v, url): user_id=AUTOJANNY_ID, target_submission_id=post.id, kind="ban_post", - _note="spam" + _note="Spam" ) g.db.add(ma) return False @@ -403,7 +403,7 @@ def execute_antispam_comment_check(body:str, v:User): user_id=AUTOJANNY_ID, target_comment_id=comment.id, kind="ban_comment", - _note="spam" + _note="Spam" ) g.db.add(ma) g.db.commit()