diff options
author | 2015-09-29 21:57:38 +0200 | |
---|---|---|
committer | 2015-09-29 21:57:38 +0200 | |
commit | 0af040e72ad8345ce4ecc6952dcf4fe4dc28f4ff (patch) | |
tree | 3f4f9e27717792ac1a0cf9730c113662ea106e24 /module/plugins/hooks/IRCInterface.py | |
parent | Update crypter plugins (diff) | |
download | pyload-0af040e72ad8345ce4ecc6952dcf4fe4dc28f4ff.tar.xz |
Update addon plugins
Diffstat (limited to 'module/plugins/hooks/IRCInterface.py')
-rw-r--r-- | module/plugins/hooks/IRCInterface.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/plugins/hooks/IRCInterface.py b/module/plugins/hooks/IRCInterface.py index 020939805..c84c0439d 100644 --- a/module/plugins/hooks/IRCInterface.py +++ b/module/plugins/hooks/IRCInterface.py @@ -18,7 +18,7 @@ from module.utils import formatSize class IRCInterface(Thread, Addon): __name__ = "IRCInterface" __type__ = "hook" - __version__ = "0.16" + __version__ = "0.17" __status__ = "testing" __config__ = [("host" , "str" , "IRC-Server Address" , "Enter your server here!"), @@ -105,7 +105,8 @@ class IRCInterface(Thread, Addon): except IRCError, ex: self.sock.send("QUIT :byebye\r\n") - traceback.print_exc() + if self.pyload.debug: + traceback.print_exc() self.sock.close() |