From 96128d604ad919a2ff6bf486f351cb4f1b4656d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=82=A6?= Date: Sun, 28 Jan 2024 20:17:35 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=87=E4=BB=B6=E5=8F=AF?= =?UTF-8?q?=E8=83=BD=E4=B8=8D=E5=AD=98=E5=9C=A8=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改文件可能不存在的bug --- webui.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/webui.py b/webui.py index 23d803d..6577705 100644 --- a/webui.py +++ b/webui.py @@ -16,7 +16,11 @@ if(os.path.exists(tmp)): if(name=="jieba.cache"):continue path="%s/%s"%(tmp,name) delete=os.remove if os.path.isfile(path) else shutil.rmtree - delete(path) + try: + delete(path) + except Exception as e: + print(str(e)) + pass import site site_packages_roots = [] for path in site.getsitepackages():