summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/IRCInterface.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-08-12 17:03:11 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-08-12 17:03:11 +0200
commitfae28ebcc48455038cd1fcb6cfc99c7967b0c6c7 (patch)
tree73ac2ec93feec0b947611d94a91efa38d056b982 /module/plugins/hooks/IRCInterface.py
parentIRCHook fixes: getestet ! :D (diff)
downloadpyload-fae28ebcc48455038cd1fcb6cfc99c7967b0c6c7.tar.xz
XMPP Interface
Diffstat (limited to 'module/plugins/hooks/IRCInterface.py')
-rw-r--r--module/plugins/hooks/IRCInterface.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hooks/IRCInterface.py b/module/plugins/hooks/IRCInterface.py
index 7628d77ea..4fa22654d 100644
--- a/module/plugins/hooks/IRCInterface.py
+++ b/module/plugins/hooks/IRCInterface.py
@@ -85,8 +85,8 @@ class IRCInterface(Thread, Hook):
for t in self.getConfig("owner").split():
if t.strip().startswith("#"):
self.sock.send("JOIN %s\r\n" % t.strip())
- self.log.info("pyLoadIRC: Connected to %s!" % host)
- self.log.info("pyLoadIRC: Switching to listening mode!")
+ self.log.info("pyLoad IRC: Connected to %s!" % host)
+ self.log.info("pyLoad IRC: Switching to listening mode!")
try:
self.main_loop()
@@ -172,7 +172,7 @@ class IRCInterface(Thread, Hook):
for line in res:
self.response(line, msg["origin"])
except Exception, e:
- self.log.error("pyLoadIRC: "+ repr(e))
+ self.log.error("pyLoad IRC: "+ repr(e))
def response(self, msg, origin=""):