diff options
| author | 2015-09-12 17:02:52 +0200 | |
|---|---|---|
| committer | 2015-09-12 17:02:52 +0200 | |
| commit | c882dee1dc48a5442801c1fcec7ed75a0bd9c4cb (patch) | |
| tree | d342773e3542953108618b6f9db4c3f83cbe8661 /module/plugins | |
| parent | Merge pull request #1807 from GammaC0de/patch-1 (diff) | |
| parent | Fix IRCInterface and XMPPInterface (diff) | |
| download | pyload-c882dee1dc48a5442801c1fcec7ed75a0bd9c4cb.tar.xz | |
Merge pull request #1813 from emkayyyy/patch-1
Fix IRCInterface and XMPPInterface
Diffstat (limited to 'module/plugins')
| -rw-r--r-- | module/plugins/hooks/IRCInterface.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/IRCInterface.py b/module/plugins/hooks/IRCInterface.py index 08b1bad0c..5d8928a57 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.15" +    __version__ = "0.16"      __status__  = "testing"      __config__ = [("host"     , "str" , "IRC-Server Address"                           , "Enter your server here!"), @@ -40,7 +40,7 @@ class IRCInterface(Thread, Addon):      def __init__(self, core, manager):          Thread.__init__(self)          Addon.__init__(self, core, manager) -        self.set_daemon(True) +        self.setDaemon(True)      def activate(self):  | 
