diff options
author | 2014-12-26 04:18:41 +0100 | |
---|---|---|
committer | 2014-12-26 04:18:41 +0100 | |
commit | 4c63928557398891c30d3e2b7c962a07b3483315 (patch) | |
tree | 8e8a06a745d1d7c1e6242bf30c7364a92e3c0e22 /module/plugins/internal/UnRar.py | |
parent | [UnSkipOnFail] Bump up version (diff) | |
download | pyload-4c63928557398891c30d3e2b7c962a07b3483315.tar.xz |
Rename AbstractExtractor to Extractor
Diffstat (limited to 'module/plugins/internal/UnRar.py')
-rw-r--r-- | module/plugins/internal/UnRar.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/internal/UnRar.py b/module/plugins/internal/UnRar.py index b70bf3257..572fe95b9 100644 --- a/module/plugins/internal/UnRar.py +++ b/module/plugins/internal/UnRar.py @@ -8,7 +8,7 @@ from os.path import basename, dirname, join from string import digits from subprocess import Popen, PIPE -from module.plugins.internal.AbstractExtractor import AbtractExtractor, ArchiveError, CRCError, PasswordError +from module.plugins.internal.Extractor import Extractor, ArchiveError, CRCError, PasswordError from module.utils import save_join, decode @@ -20,9 +20,9 @@ def renice(pid, value): print "Renice failed" -class UnRar(AbtractExtractor): +class UnRar(Extractor): __name__ = "UnRar" - __version__ = "1.00" + __version__ = "1.01" __description__ = """Rar extractor plugin""" __license__ = "GPLv3" |