From 912e8bf7df7ca4a1734d6ca649ac0c45d446b3c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=BF=97=E5=90=8C?= Date: Thu, 14 Jan 2021 15:56:51 +0800 Subject: [PATCH] Update MainService.Plugins.cs https://github.com/neo-project/neo-modules/pull/453#discussion_r557100757 --- neo-cli/CLI/MainService.Plugins.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo-cli/CLI/MainService.Plugins.cs b/neo-cli/CLI/MainService.Plugins.cs index c1f32d931..e351434c5 100644 --- a/neo-cli/CLI/MainService.Plugins.cs +++ b/neo-cli/CLI/MainService.Plugins.cs @@ -107,7 +107,7 @@ private void OnPluginsCommand() foreach (Plugin plugin in Plugin.Plugins) { if (plugin is Logger) continue; - Console.WriteLine("\t" + plugin.Name + "\t" + plugin.Description); + Console.WriteLine("\t" + plugin.Name + "\t\t" + plugin.Description); } } else