From 236e40ac970aa1f54896431880826097b5f9d7b4 Mon Sep 17 00:00:00 2001 From: Watchful1 Date: Sun, 13 Dec 2020 18:41:17 -0800 Subject: [PATCH] Oops --- pointsbot/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pointsbot/bot.py b/pointsbot/bot.py index 501eb6a..7a8ac88 100644 --- a/pointsbot/bot.py +++ b/pointsbot/bot.py @@ -17,7 +17,7 @@ USER_AGENT = 'PointsBot (by u/GlipGlorp7)' # The pattern that determines whether a post is marked as solved # Could also use re.IGNORECASE flag instead SOLVED_PATTERN = re.compile('![Ss]olved') -MOD_SOLVED_PATTERN = re.compile('/[Ss]olved|') +MOD_SOLVED_PATTERN = re.compile('/[Ss]olved') MOD_REMOVE_PATTERN = re.compile('/[Rr]emove[Pp]oint') ### Main Function ###