diff options
| author | 2015-02-17 19:48:29 +0100 | |
|---|---|---|
| committer | 2015-02-17 19:48:29 +0100 | |
| commit | dd9d6d6004bd7063b31f07857eba0eb6ab2e82eb (patch) | |
| tree | d13751c911742858570a359054a251c1220ba976 /pyload/plugin/addon | |
| parent | Update webui (diff) | |
| download | pyload-dd9d6d6004bd7063b31f07857eba0eb6ab2e82eb.tar.xz | |
Fix extractor plugin type
Diffstat (limited to 'pyload/plugin/addon')
| -rw-r--r-- | pyload/plugin/addon/ExtractArchive.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/pyload/plugin/addon/ExtractArchive.py b/pyload/plugin/addon/ExtractArchive.py index b2460bf9d..9cd8fad62 100644 --- a/pyload/plugin/addon/ExtractArchive.py +++ b/pyload/plugin/addon/ExtractArchive.py @@ -50,7 +50,7 @@ if os.name != "nt":      from pwd import getpwnam  from pyload.plugin.Addon import Addon, threaded, Expose -from pyload.plugin.internal.Extractor import ArchiveError, CRCError, PasswordError +from pyload.plugin.Extractor import ArchiveError, CRCError, PasswordError  from pyload.plugin.internal.SimpleHoster import replace_patterns  from pyload.utils import fs_encode, safe_join, uniqify @@ -148,7 +148,7 @@ class ExtractArchive(Addon):          for p in ("UnRar", "SevenZip", "UnZip"):              try: -                module = self.core.pluginManager.loadModule("internal", p) +                module = self.core.pluginManager.loadModule("extractor", p)                  klass  = getattr(module, p)                  if klass.isUsable():                      self.extractors.append(klass) | 
