diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-08-03 00:38:28 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-08-03 00:38:28 +0200 |
commit | 950250af5af3a1cd3deb351d2678bab49418a3a8 (patch) | |
tree | eab4689e4d811467dd7b16063c3b45c031de9d08 /module | |
parent | Use set_cookie instead cj.setCookie (diff) | |
parent | fix import error (diff) | |
download | pyload-950250af5af3a1cd3deb351d2678bab49418a3a8.tar.xz |
Merge pull request #1670 from GammaC0de/patch-2
[AntiStandby] fix import error
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hooks/AntiStandby.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/AntiStandby.py b/module/plugins/hooks/AntiStandby.py index 699ecbbde..2d7a165a6 100644 --- a/module/plugins/hooks/AntiStandby.py +++ b/module/plugins/hooks/AntiStandby.py @@ -13,7 +13,7 @@ except ImportError: pass from module.plugins.internal.Addon import Addon, Expose -from module.utils import save_join as fs_encode, fs_join +from module.utils import save_join as fs_join, fs_encode class Kernel32(object): @@ -27,7 +27,7 @@ class Kernel32(object): class AntiStandby(Addon): __name__ = "AntiStandby" __type__ = "hook" - __version__ = "0.10" + __version__ = "0.11" __status__ = "testing" __config__ = [("activated", "bool", "Activated" , True ), |