diff options
author | 2015-07-24 00:33:19 +0200 | |
---|---|---|
committer | 2015-07-24 00:33:19 +0200 | |
commit | 12cbb11279ebfa2f2945c5adb093b97924a8cfc3 (patch) | |
tree | 20b7962da4b6eee366ec3b67c24024385a617f20 /module/plugins/internal/Extractor.py | |
parent | [Plugin] Another fix about page decoding (diff) | |
download | pyload-12cbb11279ebfa2f2945c5adb093b97924a8cfc3.tar.xz |
Small __init__ fixes
Diffstat (limited to 'module/plugins/internal/Extractor.py')
-rw-r--r-- | module/plugins/internal/Extractor.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/Extractor.py b/module/plugins/internal/Extractor.py index 3d2859f54..7189ddc25 100644 --- a/module/plugins/internal/Extractor.py +++ b/module/plugins/internal/Extractor.py @@ -75,7 +75,7 @@ class Extractor(Plugin): return targets - def __init__(self, manager, filename, out, + def __init__(self, plugin, filename, out, fullpath=True, overwrite=False, excludefiles=[], @@ -86,7 +86,7 @@ class Extractor(Plugin): """ Initialize extractor for specific file """ - self.pyload = manager.core + self.pyload = plugin.pyload self.info = {} #: Provide information in dict here self.filename = filename |