summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/UnRar.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-21 01:51:12 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-21 01:51:12 +0200
commit52dabdbe4241b6c6af8bc139d480be5ed2af2294 (patch)
treeb09a4313a3b5f6c507dc4e961eee2496f9e7b9cb /module/plugins/internal/UnRar.py
parent[Notifier] Fix https://github.com/pyload/pyload/issues/2090 (diff)
downloadpyload-52dabdbe4241b6c6af8bc139d480be5ed2af2294.tar.xz
Boring code cosmetics (2)
Diffstat (limited to 'module/plugins/internal/UnRar.py')
-rw-r--r--module/plugins/internal/UnRar.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/module/plugins/internal/UnRar.py b/module/plugins/internal/UnRar.py
index 12855f712..963ca2a2e 100644
--- a/module/plugins/internal/UnRar.py
+++ b/module/plugins/internal/UnRar.py
@@ -11,6 +11,7 @@ from module.plugins.internal.utils import decode, fs_join, renice
class UnRar(Extractor):
__name__ = "UnRar"
+ __type__ = "extractor"
__version__ = "1.29"
__status__ = "testing"
@@ -21,8 +22,8 @@ class UnRar(Extractor):
("Immenz" , "immenz@gmx.net" )]
- CMD = "unrar"
- EXTENSIONS = [".rar"]
+ CMD = "unrar"
+ EXTENSIONS = [".rar"]
re_multipart = re.compile(r'\.(part|r)(\d+)(?:\.rar)?(\.rev|\.bad)?', re.I)