make Misc.apropos return plugin name even if command is in only one plugin.

Signed-off-by: James Vega <jamessan@users.sourceforge.net>
This commit is contained in:
Daniel Folkinshteyn 2010-04-27 12:46:22 -04:00 committed by James Vega
parent 9e73f4482c
commit 8daebd1240

View File

@ -170,11 +170,8 @@ class Misc(callbacks.Plugin):
if s in command:
commands.setdefault(command, []).append(cb.name())
for (key, names) in commands.iteritems():
if len(names) == 1:
L.append(key)
else:
for name in names:
L.append('%s %s' % (name, key))
for name in names:
L.append('%s %s' % (name, key))
if L:
L.sort()
irc.reply(format('%L', L))