From d30881e59b47259fcaa1fe84273d6ac0143b47a5 Mon Sep 17 00:00:00 2001 From: Soulter <37870767+Soulter@users.noreply.github.com> Date: Sat, 13 May 2023 14:10:00 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E8=A1=A5=E5=85=85=E6=8F=92=E4=BB=B6?= =?UTF-8?q?=E6=8C=87=E4=BB=A4=E7=9A=84=E5=B8=AE=E5=8A=A9=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- model/command/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/command/command.py b/model/command/command.py index a61e3ae33..b0b1abb66 100644 --- a/model/command/command.py +++ b/model/command/command.py @@ -74,7 +74,7 @@ class Command: def plugin_oper(self, message: str, role: str): l = message.split(" ") if len(l) < 2: - return True, "【安装插件】示例:\n安装插件: \nplugin i 插件Github地址\n卸载插件: \nplugin i 插件名 \n重载插件: \nplugin reload", "plugin" + return True, "【插件指令】示例:\n安装插件: \nplugin i 插件Github地址\n卸载插件: \nplugin i 插件名 \n重载插件: \nplugin reload\n查看插件列表\nplugin l", "plugin" else: ppath = "" if os.path.exists("addons/plugins"):