Browse Source

Fix groups not being added to regex string

pull/27/head
Andrei 8 years ago
parent
commit
b590f8b30f
  1. 2
      disco/bot/command.py

2
disco/bot/command.py

@ -235,7 +235,7 @@ class Command(object):
group = ''
if self.group:
if self.group in self.plugin.bot.group_abbrev:
group = '(?:\w+)? '.format(self.plugin.bot.group_abbrev.get(self.group))
group = '{}(?:\w+)? '.format(self.plugin.bot.group_abbrev.get(self.group))
else:
group = self.group + ' '
return ('^{}({})' if grouped else '^{}(?:{})').format(

Loading…
Cancel
Save