Skip to content

Commit

Permalink
🐛 修复日志输出格式 (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
Well2333 authored Jan 5, 2025
1 parent c387c47 commit 5e7fdcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nonebot_plugin_bilichat/subscribe/status.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ async def refresh_online_users(cls) -> None:
cls.online_users[user.id] = user
except Exception as e:
logger.debug(f"用户 [{user.id}] 未在线: {e}")
logger.debug(f"当前可推送的用户: {list(cls.online_users.keys()) or "无"}")
logger.debug(f"当前可推送的用户: {list(cls.online_users.keys()) or '无'}")

@classmethod
async def get_online_ups(cls) -> list[UPStatus]:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "nonebot-plugin-bilichat"

version = "6.0.2"
version = "6.0.3"

description = "全功能的 bilibili 内容解析器及订阅器"
authors = [
Expand Down

0 comments on commit 5e7fdcd

Please sign in to comment.