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

plugins/help: PEP8 E225: missing whitespace around '=' and '>'


Signed-off-by: default avatarGryllida A <Gryllida@GMAIL.com>
parent e9aa3c6f
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ class Help(object):
self.server.doMessage(user, "All commands can be sent in a private message to the bot, or a channel message beginning with "
+ self.server.config["comchar"] + " or " + self.server.config["nickname"] + ":")
# get command lists strings for each plugin
strings=[]
strings = []
for pluginName in self.server.plugins:
if self.server.plugins[pluginName].commands == []:
strings.append(pluginName + ": (none)")
......@@ -49,7 +49,7 @@ class Help(object):
break
nextitem = strings.pop()
if reply == "": reply += nextitem
elif len((reply + nextitem))>60:
elif len((reply + nextitem)) > 60:
self.server.doMessage(user, reply)
reply = ""
else:
......
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