Skip to content
Snippets Groups Projects
Commit 0ee6381b authored by Svetlana Tkachenko's avatar Svetlana Tkachenko
Browse files

rm typo in ns_pwd config setting name

parent fd9bd2f4
No related branches found
No related tags found
No related merge requests found
......@@ -222,8 +222,8 @@ class IRC(asynchat.async_chat):
elif words[1] == "422" or words[1] == "376":
# We successfully logged in, do post-login procedures
if self.config["ns_name"] != "" and self.config["ns_pass"] != "":
self.doMessage("NickServ", "IDENTIFY "+self.config["ns_name"]+" "+self.config["ns_pass"])
if self.config["ns_name"] != "" and self.config["ns_pwd"] != "":
self.doMessage("NickServ", "IDENTIFY "+self.config["ns_name"]+" "+self.config["ns_pwd"])
self.pluginManager.event("connect", self.config["network"])
......
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