From c94d6d5494e2a550990260fb5e9fa20a42547e32 Mon Sep 17 00:00:00 2001 From: li-xiaochen <397721316@qq.com> Date: Sun, 23 Feb 2025 20:09:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=9F=E8=83=BD=E4=BF=AE=E5=A4=8D=EF=BC=9A?= =?UTF-8?q?=E6=89=93=E5=8C=85=E5=90=8E=E8=BF=90=E8=A1=8C=E5=AE=9E=E4=BE=8B?= =?UTF-8?q?=E6=97=B6=E7=BC=96=E7=A0=81=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- launcher/webview/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/webview/api.py b/launcher/webview/api.py index b24ab1d..5842e9f 100644 --- a/launcher/webview/api.py +++ b/launcher/webview/api.py @@ -42,7 +42,7 @@ command_list = { "reset": lambda: f"..\\git\\bin\\git -c lfs.concurrenttransfers=200 reset --hard origin/{config.conf.branch}", "pip_tools_install": lambda: f"..\\python\\Scripts\\pip install --no-cache-dir -i {mirror_list[config.conf.mirror]} pip-tools --no-warn-script-location", "pip_sync": lambda: f"..\\python\\Scripts\\pip-sync -i {mirror_list[config.conf.mirror]} requirements.txt", - "webview": lambda instance_path="": f'..\\python\\pythonw webview_ui.py "{instance_path}"', + "webview": lambda instance_path="": f'..\\python\\pythonw -X utf8 webview_ui.py "{instance_path}"', "open_folder": lambda folder_path: f"explorer {folder_path}", }