From 65b369ffd4ccad296cb1a63e721881198d5db970 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 30 Nov 2004 04:41:43 +0000 Subject: [PATCH] Removed a vestigial comment; our current system of not combiningRest has worked out well. --- src/commands.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/commands.py b/src/commands.py index d261aadfc..b9cd541d7 100644 --- a/src/commands.py +++ b/src/commands.py @@ -625,10 +625,6 @@ class context(object): self.converter = spec def __call__(self, irc, msg, args, state): -## if args and not (state.types or state.allowExtra): -## # We're the last context/type, we should combine the remaining -## # arguments into one string. -## args[:] = [' '.join(args)] log.debug('args before %r: %r', self, args) self.converter(irc, msg, args, state, *self.args) log.debug('args after %r: %r', self, args)