mirror of
https://github.com/jlu5/PyLink.git
synced 2025-02-25 09:50:39 +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.
|
Handles incoming PARTs.
|
||||||
"""
|
"""
|
||||||
# <- :GL|!~GL@127.0.0.1 PART #whatever
|
# <- :GL|!~GL@127.0.0.1 PART #whatever
|
||||||
channels = list(map(self.to_lower, args[0].split(',')))
|
channels = args[0].split(',')
|
||||||
try:
|
try:
|
||||||
reason = args[1]
|
reason = args[1]
|
||||||
except IndexError:
|
except IndexError:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user