From 3227602845cfe2c43a8b3de50f4651c02f9ff932 Mon Sep 17 00:00:00 2001 From: KimigaiiWuyi <444835641@qq.com> Date: Sun, 18 Aug 2024 06:45:22 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20=E4=BC=98=E5=8C=96=E6=96=87?= =?UTF-8?q?=E6=A1=88=20(#639)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GenshinUID/genshinuid_gachalog/__init__.py | 4 ++-- GenshinUID/genshinuid_gachalog/export_and_import.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/GenshinUID/genshinuid_gachalog/__init__.py b/GenshinUID/genshinuid_gachalog/__init__.py index 8f74136c..2af36e37 100644 --- a/GenshinUID/genshinuid_gachalog/__init__.py +++ b/GenshinUID/genshinuid_gachalog/__init__.py @@ -77,7 +77,7 @@ async def send_export_gacha_info(bot: Bot, ev: Event): return await bot.send(UID_HINT) resp = await bot.receive_resp( - '请问你要导出哪个版本的UIGF文件?\n可选:v2、v4', + '❓请问你要导出哪个版本的UIGF文件?\n➡可选:v2、v4', ) version = '2' @@ -89,7 +89,7 @@ async def send_export_gacha_info(bot: Bot, ev: Event): return await bot.send( '❌请输入正确的版本号噢!(可选:v2、v4)\n本次导出终止...' ) - await bot.send(f'即将为你导出UIGFv{version}文件,请耐心等待...') + await bot.send(f'🔜即将为你导出UIGFv{version}文件,请耐心等待...') export = await export_gachalogs(uid, version) if export['retcode'] == 'ok': diff --git a/GenshinUID/genshinuid_gachalog/export_and_import.py b/GenshinUID/genshinuid_gachalog/export_and_import.py index 7f4685c4..415e2367 100644 --- a/GenshinUID/genshinuid_gachalog/export_and_import.py +++ b/GenshinUID/genshinuid_gachalog/export_and_import.py @@ -197,7 +197,7 @@ async def export_gachalogs(uid: str, version: str) -> dict: 'retcode': 'ok', 'data': '导出成功!', 'name': f'UIGF_v{version}_{uid}.json', - 'url': str((path / f'UIGF_{uid}.json').absolute()), + 'url': str((path / f'UIGF_v{version}_{uid}.json').absolute()), } else: logger.error('[导出抽卡记录] 没有找到抽卡记录!')