Skip to content
Snippets Groups Projects
Commit e9aa3c6f authored by auscompgeek's avatar auscompgeek Committed by Svetlana Tkachenko
Browse files

plugins/ctcp: PEP8 E225: missing whitespace around '>'


Signed-off-by: default avatarGryllida A <Gryllida@GMAIL.com>
parent cd4bf42b
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ class ctcp(object):
if message.find("\001") == -1: return
message_array = message.replace("\001", "", 2).strip().lower().split()
ctcp_type = message_array[0]
if (len(message_array)>1):
if (len(message_array) > 1):
ctcp_args = " ".join(message_array[1:])
else:
ctcp_args = ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment