From ba49abfb8db425a3175ce426d7e1057828b02373 Mon Sep 17 00:00:00 2001 From: morpheus65535 <5130500+morpheus65535@users.noreply.github.com> Date: Wed, 22 Aug 2018 23:41:58 -0400 Subject: [PATCH] Fix for missing double quote blocking installation of requirements.txt on Windows when Bazarr path contain a space. --- update_modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_modules.py b/update_modules.py index 1c32e2f8f..4f1c25a89 100644 --- a/update_modules.py +++ b/update_modules.py @@ -7,7 +7,7 @@ import sys try: logging.info('Installing Python modules required for Bazarr...') - command = sys.executable + ' -m pip --disable-pip-version-check -q -q install --user -r ' + os.path.join(os.path.dirname(__file__), 'requirements.txt') + command = sys.executable + ' -m pip --disable-pip-version-check -q -q install --user -r "' + os.path.join(os.path.dirname(__file__), 'requirements.txt"') if os.name == 'nt': codepage = check_output("chcp", shell=True, stderr=subprocess.STDOUT)