From 33fb692aee32dbc93d651d8394703365c98e5f27 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Thu, 3 Jul 2025 22:20:04 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20plugin.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/helper/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helper/plugin.py b/app/helper/plugin.py index 2d2ef766..8f6132eb 100644 --- a/app/helper/plugin.py +++ b/app/helper/plugin.py @@ -308,7 +308,7 @@ class PluginHelper(metaclass=Singleton): return None, "连接仓库失败" elif res.status_code != 200: return None, f"连接仓库失败:{res.status_code} - " \ - f"{'超出速率限制,请配置GITHUB_TOKEN环境变量或稍后重试' if res.status_code == 403 else res.reason}" + f"{'超出速率限制,请设置Github Token或稍后重试' if res.status_code == 403 else res.reason}" try: ret = res.json()