From 5a7b72bd128b026446edd57c5bd5c21d75935e80 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Wed, 22 Sep 2010 19:54:00 +0200 Subject: win unrar fixes --- module/pyunrar.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/pyunrar.py') diff --git a/module/pyunrar.py b/module/pyunrar.py index 2ce8a846f..b39c176d6 100644 --- a/module/pyunrar.py +++ b/module/pyunrar.py @@ -126,7 +126,7 @@ class Unrar(): infos = {} nameLine = False name = "" - for line in o.split("\n"): + for line in o.splitlines(): if line == "-"*79: inList = not inList continue @@ -343,7 +343,7 @@ class Unrar(): perc = int(tperc) statusFunction(perc) elif count >= 3: - if tmp == "\n": + if tmp in ("\r","\n","\r\n"): count = 0 elif tmp in digits: tperc += tmp -- cgit v1.2.3