From e4050a8130421722453b641a4ba189fd8239ce98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Fri, 1 Feb 2019 06:33:32 -0500 Subject: [PATCH] Fix for unrar path detection. --- bazarr/init.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazarr/init.py b/bazarr/init.py index c24211c0c..1875c09a6 100644 --- a/bazarr/init.py +++ b/bazarr/init.py @@ -157,7 +157,7 @@ def init_binaries(): installed_unrar = which('unrar') if installed_unrar and os.path.isfile(installed_unrar): - unrar_exe = "unrar" + unrar_exe = installed_unrar else: if platform.system() == "Windows": # Windows unrar_exe = os.path.abspath(os.path.join(binaries_dir, "Windows", "i386", "UnRAR", "UnRAR.exe"))