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

plugins/info: PEP8 E211: whitespace before '[' (wonder how that got in there)


Signed-off-by: default avatarGryllida A <Gryllida@GMAIL.com>
parent 1c1dc2cc
No related branches found
No related tags found
No related merge requests found
......@@ -77,7 +77,7 @@ class Info(object):
message = message.strip()
if message == "": return # empty message
if (message[0] != self.plugin_trigger): return # message does not start with our trigger
message = message [1:].strip() # work on the stuff after the trigger
message = message[1:].strip() # work on the stuff after the trigger
if message == "": return # ignore empty messages
if message.find("@") == -1: # no nick handle
key = message.strip()
......
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