3
0
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:
James Lu 2018-01-31 19:35:13 -08:00
parent 74848853ac
commit 18c1a277f5

View File

@ -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: