summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/IRCInterface.py
diff options
context:
space:
mode:
authorGravatar Jeix <devnull@localhost> 2010-10-24 19:15:12 +0200
committerGravatar Jeix <devnull@localhost> 2010-10-24 19:15:12 +0200
commitec7f2208c99dab2c06f59e764be3bd1c2a2b6b97 (patch)
tree430cdc245c3546186d957d316968e67d96fa7f26 /module/plugins/hooks/IRCInterface.py
parentclosed #162 (diff)
downloadpyload-ec7f2208c99dab2c06f59e764be3bd1c2a2b6b97.tar.xz
closed #170
Diffstat (limited to 'module/plugins/hooks/IRCInterface.py')
-rw-r--r--module/plugins/hooks/IRCInterface.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hooks/IRCInterface.py b/module/plugins/hooks/IRCInterface.py
index 404cf407a..dc868ede9 100644
--- a/module/plugins/hooks/IRCInterface.py
+++ b/module/plugins/hooks/IRCInterface.py
@@ -118,7 +118,7 @@ class IRCInterface(Thread, Hook):
first = line.split()
if(first[0] == "PING"):
- self.sock.send("PING %s\r\n" % first[1])
+ self.sock.send("PONG %s\r\n" % first[1])
if first[0] == "ERROR":
raise IRCError(line)