summaryrefslogtreecommitdiffstats
path: root/module/pyunrar.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/pyunrar.py')
-rw-r--r--module/pyunrar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/pyunrar.py b/module/pyunrar.py
index 0cb6d6d2e..01dc40a75 100644
--- a/module/pyunrar.py
+++ b/module/pyunrar.py
@@ -128,7 +128,7 @@ class Unrar():
args.append("-p-")
args.append(f)
p = Popen(args, stdin=PIPE, stdout=PIPE, stderr=PIPE, bufsize=-1)
- ret = p.wait()
+ ret = p.wait() #@TODO blocks for big archives with many files
if ret == 3:
self.headerEncrypted = True
raise WrongPasswordError()