mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-27 13:09:23 +01:00
clientbot: remove extraneous use of to_lower() in handle_part
This commit is contained in:
parent
74848853ac
commit
18c1a277f5
@ -1005,7 +1005,7 @@ class ClientbotWrapperProtocol(IRCCommonProtocol):
|
||||
Handles incoming PARTs.
|
||||
"""
|
||||
# <- :GL|!~GL@127.0.0.1 PART #whatever
|
||||
channels = list(map(self.to_lower, args[0].split(',')))
|
||||
channels = args[0].split(',')
|
||||
try:
|
||||
reason = args[1]
|
||||
except IndexError:
|
||||
|
Loading…
Reference in New Issue
Block a user