Skip to content

Commit

Permalink
🎨 优化文案 (#639)
Browse files Browse the repository at this point in the history
  • Loading branch information
KimigaiiWuyi committed Aug 17, 2024
1 parent bbc72ca commit 3227602
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions GenshinUID/genshinuid_gachalog/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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':
Expand Down
2 changes: 1 addition & 1 deletion GenshinUID/genshinuid_gachalog/export_and_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -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('[导出抽卡记录] 没有找到抽卡记录!')
Expand Down

0 comments on commit 3227602

Please sign in to comment.