summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/ExtractArchive.py
diff options
context:
space:
mode:
authorGravatar Nitzo <nitzo2001@yahoo.com> 2016-01-30 03:04:52 +0100
committerGravatar Nitzo <nitzo2001@yahoo.com> 2016-01-30 03:04:52 +0100
commitc6ba3ae11f9296108a297fc78ae68f3c8461a3da (patch)
treed2cec1679a3fad86c114867037ba29e5fd97d0c1 /module/plugins/hooks/ExtractArchive.py
parent[ClickNLoad] Fix false reporting of unclean shutdown on python 2.5 (diff)
downloadpyload-c6ba3ae11f9296108a297fc78ae68f3c8461a3da.tar.xz
[misc] Move `threaded`, `Expose` form Addon to misc
Diffstat (limited to 'module/plugins/hooks/ExtractArchive.py')
-rw-r--r--module/plugins/hooks/ExtractArchive.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hooks/ExtractArchive.py b/module/plugins/hooks/ExtractArchive.py
index 782e917b0..6d559bfcb 100644
--- a/module/plugins/hooks/ExtractArchive.py
+++ b/module/plugins/hooks/ExtractArchive.py
@@ -49,9 +49,9 @@ try:
except ImportError:
pass
-from module.plugins.internal.Addon import Addon, Expose, threaded
+from module.plugins.internal.Addon import Addon
from module.plugins.internal.Extractor import ArchiveError, CRCError, PasswordError
-from module.plugins.internal.misc import encode, exists, fsjoin, uniqify
+from module.plugins.internal.misc import encode, exists, Expose, fsjoin, threaded, uniqify
class ArchiveQueue(object):
@@ -98,7 +98,7 @@ class ArchiveQueue(object):
class ExtractArchive(Addon):
__name__ = "ExtractArchive"
__type__ = "hook"
- __version__ = "1.56"
+ __version__ = "1.57"
__status__ = "broken"
__config__ = [("activated" , "bool" , "Activated" , True ),