diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-28 16:50:39 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-28 16:50:39 +0200 |
commit | 44e7152a5fa2e6a1b85f5e68100d4d19c03f61e4 (patch) | |
tree | 4bda9d62db74c2429fd6f9c497f9fa708d6374cb /module | |
parent | [Account] Hotfix (diff) | |
download | pyload-44e7152a5fa2e6a1b85f5e68100d4d19c03f61e4.tar.xz |
Fix https://github.com/pyload/pyload/issues/1577 and https://github.com/pyload/pyload/issues/1580
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/internal/Hook.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/Hook.py b/module/plugins/internal/Hook.py index 36c85fc19..1f566f824 100644 --- a/module/plugins/internal/Hook.py +++ b/module/plugins/internal/Hook.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- -from module.plugins.internal.Addon import Addon +from module.plugins.internal.Addon import Addon, threaded class Hook(Addon): __name__ = "Hook" __type__ = "hook" - __version__ = "0.12" + __version__ = "0.13" __status__ = "testing" __config__ = [] #: [("name", "type", "desc", "default")] |