From 2e7b707e1e0f9a1da3955ea7585eaf0d7e8d45f4 Mon Sep 17 00:00:00 2001 From: Andrei Date: Fri, 2 Dec 2016 15:56:55 -0600 Subject: [PATCH] bugfix - n-size arguments would be limited to one argument --- disco/bot/parser.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/disco/bot/parser.py b/disco/bot/parser.py index d6f38db..16ee3f2 100644 --- a/disco/bot/parser.py +++ b/disco/bot/parser.py @@ -79,9 +79,7 @@ class Argument(object): if not self.flag: if part.endswith('...'): part = part[:-3] - - if self.flag: - raise TypeError('Cannot use nargs on flag') + self.count = 0 elif ' ' in part: split = part.split(' ', 1) part, self.count = split[0], int(split[1])