From 013fd544448f1b28c8e7e62ded069f4d3f84ed29 Mon Sep 17 00:00:00 2001 From: Andrei Date: Tue, 27 Dec 2016 01:58:59 -0600 Subject: [PATCH] cleanup - Simplfy ARGS_REGEX even more This still needs to not be a shitty regex --- disco/bot/command.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/disco/bot/command.py b/disco/bot/command.py index 1ed5d9e..b2283da 100644 --- a/disco/bot/command.py +++ b/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):