From fdd51c823dc444f31b3df6a6c4f0e6e5f9d03d31 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Fri, 18 Apr 2025 22:06:42 -0400 Subject: [PATCH] quickfix Signed-off-by: Vladimir Mandic --- installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer.py b/installer.py index a3410752f..d3f52980e 100644 --- a/installer.py +++ b/installer.py @@ -975,7 +975,7 @@ def run_extension_installer(folder): env = os.environ.copy() env['PYTHONPATH'] = os.path.abspath(".") if os.environ.get('PYTHONPATH', None) is not None: - env['PYTHONPATH'] += f';{os.environ.get('PYTHONPATH', None)}' + env['PYTHONPATH'] += f";{os.environ.get('PYTHONPATH', None)}" result = subprocess.run(f'"{sys.executable}" "{path_installer}"', shell=True, env=env, check=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=folder) txt = result.stdout.decode(encoding="utf8", errors="ignore") debug(f'Extension installer: file="{path_installer}" {txt}')