diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-26 10:40:32 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-26 10:40:32 +0100 |
commit | 329293e0bb0cf4008688d8c73d4b98caa7082141 (patch) | |
tree | f718ced3338ac170ce47e1ebba72ce2fdd124dcf /module/plugins/internal/UnRar.py | |
parent | interval code cosmetics (diff) | |
download | pyload-329293e0bb0cf4008688d8c73d4b98caa7082141.tar.xz |
[Extractor] Rename method 'test' to 'verify'
Diffstat (limited to 'module/plugins/internal/UnRar.py')
-rw-r--r-- | module/plugins/internal/UnRar.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/UnRar.py b/module/plugins/internal/UnRar.py index 75c192bac..5b9f2e1c3 100644 --- a/module/plugins/internal/UnRar.py +++ b/module/plugins/internal/UnRar.py @@ -22,7 +22,7 @@ def renice(pid, value): class UnRar(Extractor): __name__ = "UnRar" - __version__ = "1.19" + __version__ = "1.20" __description__ = """Rar extractor plugin""" __license__ = "GPLv3" @@ -83,7 +83,7 @@ class UnRar(Extractor): return True if cls.re_multipart.search(filename) else False - def test(self, password): + def verify(self, password): p = self.call_cmd("t", "-v", fs_encode(self.filename), password=password) self._progress(p) err = p.stderr.read().strip() |