From 7e6d209b7a1fbd41fccf440aef1eeeb5d3b4736a Mon Sep 17 00:00:00 2001 From: seonghobae <8172694+seonghobae@users.noreply.github.com> Date: Tue, 8 Sep 2026 17:16:07 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A1=EF=B8=8F=20Sentinel:=20[MEDIUM]=20?= =?UTF-8?q?Fix=20missing=20shell=3DFalse=20in=20subprocess.run=20in=20audi?= =?UTF-8?q?o=5Flibrary.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- audio_library.py | 1 + 1 file changed, 1 insertion(+) diff --git a/audio_library.py b/audio_library.py index f3c788a7..d9524cb3 100644 --- a/audio_library.py +++ b/audio_library.py @@ -4699,6 +4699,7 @@ def preflight_mlx_vlm_import( stdout=subprocess.DEVNULL, stderr=subprocess.PIPE, text=True, + shell=False, timeout=timeout_seconds, env=trusted_child_environment(), cwd=Path(sys.executable).resolve().parent,