summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/Extractor.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2015-02-03 00:10:11 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2015-02-03 00:10:11 +0100
commit8dfb7adc0fc3c858c0ddf9371c2f4580bb8be3c7 (patch)
tree724716e0820a71e8da356f77f300e728041027c5 /module/plugins/internal/Extractor.py
parentMerge pull request #1137 from immenz/dev_Unzip (diff)
downloadpyload-8dfb7adc0fc3c858c0ddf9371c2f4580bb8be3c7.tar.xz
Update Extractor (3)
Diffstat (limited to 'module/plugins/internal/Extractor.py')
-rw-r--r--module/plugins/internal/Extractor.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/module/plugins/internal/Extractor.py b/module/plugins/internal/Extractor.py
index 719dc613c..45c13c159 100644
--- a/module/plugins/internal/Extractor.py
+++ b/module/plugins/internal/Extractor.py
@@ -19,7 +19,7 @@ class PasswordError(Exception):
class Extractor:
__name__ = "Extractor"
- __version__ = "0.17"
+ __version__ = "0.18"
__description__ = """Base extractor plugin"""
__license__ = "GPLv3"
@@ -41,7 +41,7 @@ class Extractor:
""" Check if system statisfy dependencies
:return: boolean
"""
- return True
+ return None
@classmethod
@@ -99,11 +99,11 @@ class Extractor:
:param password:
:return: boolean
"""
- return True
+ return None
def repair(self):
- return False
+ return None
def extract(self, password=None):
@@ -127,6 +127,6 @@ class Extractor:
return [self.filename]
- def getExtractedFiles(self):
+ def list(self, password=None):
"""Populate self.files at some point while extracting"""
return self.files