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

add quit : colon, add dns plugin

parent 5ef35622
No related branches found
No related tags found
No related merge requests found
...@@ -321,7 +321,7 @@ class IRC(threading.Thread): ...@@ -321,7 +321,7 @@ class IRC(threading.Thread):
self.pluginManager.event("action", channel, self.config["nickname"], action) self.pluginManager.event("action", channel, self.config["nickname"], action)
def doQuit(self, message=None): def doQuit(self, message=None):
self.sendLine("QUIT " + (message or "")) self.sendLine("QUIT :" + (message or ""))
self.pluginManager.event("quit", self.config["nickname"], (message or "")) self.pluginManager.event("quit", self.config["nickname"], (message or ""))
self.running = False self.running = False
......
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