Skip to content

Commit

Permalink
fix sub alert regex with twitch prime
Browse files Browse the repository at this point in the history
  • Loading branch information
pajlada committed Oct 7, 2016
1 parent f0552a4 commit 272f056
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pajbot/modules/subalert.py
Expand Up @@ -88,7 +88,7 @@ class SubAlertModule(BaseModule):

def __init__(self):
super().__init__()
self.new_sub_regex = re.compile('^(\w+) just subscribed!')
self.new_sub_regex = re.compile('^(\w+) just subscribed')
self.valid_usernames = ('twitchnotify', 'pajlada')

def on_new_sub(self, user):
Expand Down

0 comments on commit 272f056

Please sign in to comment.