mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-25 04:02:46 +01:00
make Misc.apropos return plugin name even if command is in only one plugin.
This commit is contained in:
parent
2bb3ba9443
commit
a819c5b496
@ -170,11 +170,8 @@ class Misc(callbacks.Plugin):
|
|||||||
if s in command:
|
if s in command:
|
||||||
commands.setdefault(command, []).append(cb.name())
|
commands.setdefault(command, []).append(cb.name())
|
||||||
for (key, names) in commands.iteritems():
|
for (key, names) in commands.iteritems():
|
||||||
if len(names) == 1:
|
for name in names:
|
||||||
L.append(key)
|
L.append('%s %s' % (name, key))
|
||||||
else:
|
|
||||||
for name in names:
|
|
||||||
L.append('%s %s' % (name, key))
|
|
||||||
if L:
|
if L:
|
||||||
L.sort()
|
L.sort()
|
||||||
irc.reply(format('%L', L))
|
irc.reply(format('%L', L))
|
||||||
|
Loading…
Reference in New Issue
Block a user