diff options
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) |