From bfb1fc06de2a229fae04c36ed8c8344d295a8a30 Mon Sep 17 00:00:00 2001
From: gry <guppy@123mail.org>
Date: Fri, 17 Jun 2011 15:50:12 +0930
Subject: [PATCH] add quit : colon, add dns plugin

---
 irc.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/irc.py b/irc.py
index 217f407..68b2658 100644
--- a/irc.py
+++ b/irc.py
@@ -321,7 +321,7 @@ class IRC(threading.Thread):
         self.pluginManager.event("action", channel, self.config["nickname"], action)
     
     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.running = False
     
-- 
GitLab