diff options
author | Jens Hörnlein <jens.hoernlein@googlemail.com> | 2015-02-22 03:09:40 +0100 |
---|---|---|
committer | Jens Hörnlein <jens.hoernlein@googlemail.com> | 2015-02-22 03:09:40 +0100 |
commit | 56caf611ab8f733ac8a7ea09d2a3d492bd485762 (patch) | |
tree | 0f9bb843e25e88eb515fb13351fab41f3c978068 /module/plugins/internal/UnZip.py | |
parent | [ZippyshareCom] Update get_checksum (diff) | |
download | pyload-56caf611ab8f733ac8a7ea09d2a3d492bd485762.tar.xz |
Some more changes
Diffstat (limited to 'module/plugins/internal/UnZip.py')
-rw-r--r-- | module/plugins/internal/UnZip.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/module/plugins/internal/UnZip.py b/module/plugins/internal/UnZip.py index 704b49ca0..d95afbc70 100644 --- a/module/plugins/internal/UnZip.py +++ b/module/plugins/internal/UnZip.py @@ -12,7 +12,7 @@ from module.utils import fs_encode class UnZip(Extractor): __name__ = "UnZip" - __version__ = "1.10" + __version__ = "1.11" __description__ = """Zip extractor plugin""" __license__ = "GPLv3" @@ -34,7 +34,11 @@ class UnZip(Extractor): return z.namelist() - def check(self): + def check(self, password): + pass + + + def test(self): with zipfile.ZipFile(fs_encode(self.filename), 'r', allowZip64=True) as z: badfile = z.testzip() |