summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/ExtractArchive.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-26 04:18:41 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-26 04:18:41 +0100
commit4c63928557398891c30d3e2b7c962a07b3483315 (patch)
tree8e8a06a745d1d7c1e6242bf30c7364a92e3c0e22 /module/plugins/hooks/ExtractArchive.py
parent[UnSkipOnFail] Bump up version (diff)
downloadpyload-4c63928557398891c30d3e2b7c962a07b3483315.tar.xz
Rename AbstractExtractor to Extractor
Diffstat (limited to 'module/plugins/hooks/ExtractArchive.py')
-rw-r--r--module/plugins/hooks/ExtractArchive.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/ExtractArchive.py b/module/plugins/hooks/ExtractArchive.py
index 8b3b4e310..af78ffc93 100644
--- a/module/plugins/hooks/ExtractArchive.py
+++ b/module/plugins/hooks/ExtractArchive.py
@@ -51,14 +51,14 @@ if os.name != "nt":
from pwd import getpwnam
from module.plugins.Hook import Hook, threaded, Expose
-from module.plugins.internal.AbstractExtractor import ArchiveError, CRCError, PasswordError
+from module.plugins.internal.Extractor import ArchiveError, CRCError, PasswordError
from module.utils import save_join, uniqify
class ExtractArchive(Hook):
__name__ = "ExtractArchive"
__type__ = "hook"
- __version__ = "1.01"
+ __version__ = "1.02"
__config__ = [("activated" , "bool" , "Activated" , True ),
("fullpath" , "bool" , "Extract full path" , True ),