From aade6e6239438b582620cc52b46c63cdde880752 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Sat, 16 Oct 2010 14:28:34 +0200 Subject: fixed decrypting files when dl slots are full --- module/pyunrar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'module/pyunrar.py') 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() -- cgit v1.2.3