From cf0d508237ca86fc2c7621bee60dc4f535bb4b13 Mon Sep 17 00:00:00 2001 From: WangXianming <119822522+muwenyan521@users.noreply.github.com> Date: Tue, 1 Oct 2024 21:19:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=86=85=E5=AE=B9=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/config.py b/common/config.py index 68cbfa4..c96b32a 100644 --- a/common/config.py +++ b/common/config.py @@ -26,7 +26,7 @@ async def gen_config_file(): async with aiofiles.open("./config.json", mode="w", encoding="utf-8") as f: await f.write(json.dumps(DEFAULT_CONFIG, indent=2, ensure_ascii=False, escape_forward_slashes=False)) - log.info('🖱️ 程序可能为第一次启动,请填写配置文件后重新启动程序') + log.info('🖱️ 程序可能为第一次启动或配置重置,请填写配置文件后重新启动程序') except Exception as e: log.error(f'❗ 配置文件生成失败,{stack_error(e)}')