diff options
author | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-08-03 00:15:27 +0200 |
---|---|---|
committer | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-08-03 00:15:27 +0200 |
commit | 0fbe60c3c0941f3c68ab688b1a9610115ee66133 (patch) | |
tree | 33c051b590710241a5c1a8455aa3013af92d4941 | |
parent | Fix https://github.com/pyload/pyload/issues/1664 (diff) | |
download | pyload-0fbe60c3c0941f3c68ab688b1a9610115ee66133.tar.xz |
fix import error
-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 ), |