Typo, IRCServer.Server.irc_equal
-> IRCServer.Server.irc_equals
This commit is contained in:
parent
301dd7378a
commit
3df6b39228
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ class Server(IRCObject.Object):
|
||||||
|
|
||||||
def irc_lower(self, s: str) -> bool:
|
def irc_lower(self, s: str) -> bool:
|
||||||
return utils.irc.lower(self.case_mapping, s)
|
return utils.irc.lower(self.case_mapping, s)
|
||||||
def irc_equal(self, s1: str, s2: str) -> bool:
|
def irc_equals(self, s1: str, s2: str) -> bool:
|
||||||
return utils.irc.equals(self.case_mapping, s1, s2)
|
return utils.irc.equals(self.case_mapping, s1, s2)
|
||||||
|
|
||||||
def parse_data(self, line: str):
|
def parse_data(self, line: str):
|
||||||
|
|
Loading…
Reference in a new issue