From b1b13a5c630914f6f80a75b26dd221ad2b438efa Mon Sep 17 00:00:00 2001 From: James Lu Date: Sun, 17 Jul 2016 20:59:31 -0700 Subject: [PATCH] clientbot: fix args list --- protocols/clientbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/clientbot.py b/protocols/clientbot.py index 352e96a..ececcc1 100644 --- a/protocols/clientbot.py +++ b/protocols/clientbot.py @@ -96,7 +96,7 @@ class ClientbotWrapperProtocol(Protocol): args = self.parsePrefixedArgs(data) sender = args[0] command = args[1] - args = args[1:] + args = args[2:] except IndexError: # Raw command without an explicit sender; assume it's being sent by our uplink.