diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-07-30 21:35:29 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-07-30 21:35:29 +0200 |
commit | 2497c100de34c113304227f72015bfb3755854a3 (patch) | |
tree | e382f92368a37d623f5aea5d02609a13a1c338d8 /module/plugins/Hook.py | |
parent | restart working and client information (diff) | |
download | pyload-2497c100de34c113304227f72015bfb3755854a3.tar.xz |
daily commit
Diffstat (limited to 'module/plugins/Hook.py')
-rw-r--r-- | module/plugins/Hook.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/module/plugins/Hook.py b/module/plugins/Hook.py index ed62cbdb2..a928d7173 100644 --- a/module/plugins/Hook.py +++ b/module/plugins/Hook.py @@ -24,6 +24,8 @@ class Hook(): __name__ = "Hook" __version__ = "0.2" __type__ = "hook" + __threaded__ = [] + __config__ = [] __description__ = """interface for hook""" __author_name__ = ("mkaay", "RaNaN") __author_mail__ = ("mkaay@mkaay.de", "RaNaN@pyload.org") @@ -31,6 +33,7 @@ class Hook(): def __init__(self, core): self.core = core self.log = core.log + self.config = core.config self.setup() |