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 ###