From 18c1a277f54cbce3cf881e793a030c6b97380379 Mon Sep 17 00:00:00 2001 From: James Lu Date: Wed, 31 Jan 2018 19:35:13 -0800 Subject: [PATCH] clientbot: remove extraneous use of to_lower() in handle_part --- protocols/clientbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/clientbot.py b/protocols/clientbot.py index e0ce3dd..bc48744 100644 --- a/protocols/clientbot.py +++ b/protocols/clientbot.py @@ -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: