mirror of
https://git.wownero.com/wownero/tippero.git
synced 2024-08-15 00:33:14 +00:00
irc: fix command splitting creating empty tokens
This commit is contained in:
parent
7b90901049
commit
5de54e005c
1 changed files with 2 additions and 0 deletions
|
@ -316,6 +316,8 @@ class IRCNetwork(Network):
|
|||
if exidx != -1 and len(text)>exidx+1 and text[exidx+1] in string.ascii_letters and self.is_acceptable_command_prefix(text[:exidx]):
|
||||
cmd = text.split('!')[1]
|
||||
cmd = cmd.split(' ')
|
||||
while '' in cmd:
|
||||
cmd.remove('')
|
||||
cmd[0] = cmd[0].strip(' \t\n\r')
|
||||
|
||||
log_log('Found command from %s: "%s" in channel "%s"' % (who, str(cmd), str(chan)))
|
||||
|
|
Loading…
Reference in a new issue