diff options
author | Jeix <devnull@localhost> | 2010-10-24 19:15:12 +0200 |
---|---|---|
committer | Jeix <devnull@localhost> | 2010-10-24 19:15:12 +0200 |
commit | ec7f2208c99dab2c06f59e764be3bd1c2a2b6b97 (patch) | |
tree | 430cdc245c3546186d957d316968e67d96fa7f26 /module/plugins/hooks/IRCInterface.py | |
parent | closed #162 (diff) | |
download | pyload-ec7f2208c99dab2c06f59e764be3bd1c2a2b6b97.tar.xz |
closed #170
Diffstat (limited to 'module/plugins/hooks/IRCInterface.py')
-rw-r--r-- | module/plugins/hooks/IRCInterface.py | 2 |
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) |