mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-24 11:39:25 +01:00
clientbot: fix args list
This commit is contained in:
parent
8981d71fd0
commit
b1b13a5c63
@ -96,7 +96,7 @@ class ClientbotWrapperProtocol(Protocol):
|
|||||||
args = self.parsePrefixedArgs(data)
|
args = self.parsePrefixedArgs(data)
|
||||||
sender = args[0]
|
sender = args[0]
|
||||||
command = args[1]
|
command = args[1]
|
||||||
args = args[1:]
|
args = args[2:]
|
||||||
|
|
||||||
except IndexError:
|
except IndexError:
|
||||||
# Raw command without an explicit sender; assume it's being sent by our uplink.
|
# Raw command without an explicit sender; assume it's being sent by our uplink.
|
||||||
|
Loading…
Reference in New Issue
Block a user