mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-02-12 17:03:59 +08:00
Fix for missing double quote blocking installation of requirements.txt on Windows when Bazarr path contain a space.
This commit is contained in:
parent
1d0651c9e8
commit
ba49abfb8d
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue