diff options
author | morpheus65535 <[email protected]> | 2018-08-22 23:42:58 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2018-08-22 23:42:58 -0400 |
commit | 9b11324c850964186510211212e37df66c09613e (patch) | |
tree | 92f9211c34b822402caf0f39fb9bba2a4ef6e2d9 | |
parent | e7594579d713647a347c9ea7ed82c1d617c12f2b (diff) | |
parent | ba49abfb8db425a3175ce426d7e1057828b02373 (diff) | |
download | bazarr-9b11324c850964186510211212e37df66c09613e.tar.gz bazarr-9b11324c850964186510211212e37df66c09613e.zip |
Merge branch 'development'
-rw-r--r-- | update_modules.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |