From 8ee6d0f40a6aa37c3a86d832574b8eafa67a6bfc Mon Sep 17 00:00:00 2001 From: jomo Date: Mon, 14 Jul 2014 01:00:06 +0200 Subject: [PATCH] getting the right name in pluginversions --- misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc.py b/misc.py index 4475560..e90f643 100644 --- a/misc.py +++ b/misc.py @@ -102,7 +102,7 @@ def onPluginversionsCommand(sender, args): plugins.sort(key=lambda pl: pl.getName()) msg(sender, "&3Listing all " + str(len(plugins)) + " plugins and their version:") for plugin in plugins: - msg(sender, "&6" + plugin.getName() + "&r: &e" + plugin.getDescription().getVersion()) + msg(sender, "&6" + plugin.getDescription().getName() + "&r: &e" + plugin.getDescription().getVersion()) return True #