Skip to content

Commit

Permalink
fix: 修复插件测试中的插件列表地址
Browse files Browse the repository at this point in the history
  • Loading branch information
he0119 committed Oct 2, 2023
1 parent 61c34c5 commit 0a088d9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/lang/zh-CN/

## [Unreleased]

### Fixed

- 修复插件测试中的插件列表地址

## [3.1.0] - 2023-10-02

### Changed
Expand Down
4 changes: 3 additions & 1 deletion src/utils/plugin_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
from urllib.request import urlopen

# NoneBot Store
STORE_PLUGINS_URL = "https://nonebot.dev/plugins.json"
STORE_PLUGINS_URL = (
"https://raw.githubusercontent.com/nonebot/nonebot2/master/assets/plugins.json"
)

# 匹配信息的正则表达式
ISSUE_PATTERN = r"### {}\s+([^\s#].*?)(?=(?:\s+###|$))"
Expand Down

0 comments on commit 0a088d9

Please sign in to comment.