Browse Source

cleanup - Simplfy ARGS_REGEX even more

This still needs to not be a shitty regex
feature/docs
Andrei 8 years ago
parent
commit
013fd54444
  1. 8
      disco/bot/command.py

8
disco/bot/command.py

@ -6,7 +6,7 @@ from disco.bot.parser import ArgumentSet, ArgumentError
from disco.util.functional import cached_property
REGEX_FMT = '{}'
ARGS_REGEX = '( ((?:\n|.)*)$|$)'
ARGS_REGEX = '(?: ((?:\n|.)*)$|$)'
USER_MENTION_RE = re.compile('<@!?([0-9]+)>')
ROLE_MENTION_RE = re.compile('<@&([0-9]+)>')
@ -45,11 +45,11 @@ class CommandEvent(object):
self.command = command
self.msg = msg
self.match = match
self.name = self.match.group(1)
self.name = self.match.group(0)
self.args = []
if self.match.group(2):
self.args = [i for i in self.match.group(2).strip().split(' ') if i]
if self.match.group(1):
self.args = [i for i in self.match.group(1).strip().split(' ') if i]
@property
def codeblock(self):

Loading…
Cancel
Save