diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-30 16:00:19 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-30 16:00:19 +0200 |
commit | bd9c692ab57f906383f264850bce95ff310fd61f (patch) | |
tree | e73e822dba2a6cf278f7fde24f2134c65bc9a437 | |
parent | [AntiStandby] Fix max_mtime method (diff) | |
download | pyload-bd9c692ab57f906383f264850bce95ff310fd61f.tar.xz |
[AntiStandby] Fix import typo
-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 ba462e002..e669ae4f3 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 fs_join +from module.utils import save_join as fs_join class Kernel32(object): @@ -27,7 +27,7 @@ class Kernel32(object): class AntiStandby(Addon): __name__ = "AntiStandby" __type__ = "hook" - __version__ = "0.07" + __version__ = "0.08" __status__ = "testing" __config__ = [("activated", "bool", "Activated" , True ), |