I was accidentally removing two characters from the start of :nick!user@host
This commit is contained in:
parent
555e8faa03
commit
16c4e1bfc6
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ def parse_line(line: str) -> IRCLine:
|
|||
|
||||
if line[0] == ":":
|
||||
prefix_str, line = line[1:].split(" ", 1)
|
||||
prefix = seperate_hostmask(prefix_str[1:])
|
||||
prefix = seperate_hostmask(prefix_str)
|
||||
|
||||
args = []
|
||||
command, sep, line = line.partition(" ")
|
||||
|
|
Loading…
Reference in a new issue