diff options
Diffstat (limited to 'ATRI/plugins/chat')
-rw-r--r-- | ATRI/plugins/chat/data_source.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ATRI/plugins/chat/data_source.py b/ATRI/plugins/chat/data_source.py index 4c3578d..a6b4220 100644 --- a/ATRI/plugins/chat/data_source.py +++ b/ATRI/plugins/chat/data_source.py @@ -12,7 +12,7 @@ from ATRI.exceptions import ReadFileError, WriteError __doc__ = """ -好像有点涩?(偏文爱,需at +好像有点涩? """ CHAT_PATH = Path(".") / "data" / "database" / "chat" @@ -37,7 +37,7 @@ class Chat(Service): file_name = "kimo.json" path = CHAT_PATH / file_name if not path.is_file(): - log.warning("未检测到闲聊词库,生成中") + log.warning("未检测到词库,生成中") data = await cls._request(KIMO_URL) try: with open(path, "w", encoding="utf-8") as w: |