mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 02:49:27 +01:00
Fixed bug #1009683.
This commit is contained in:
parent
d267fe9fbf
commit
4e53cfef63
@ -142,7 +142,9 @@ class Config(callbacks.Privmsg):
|
||||
L = []
|
||||
for (name, _) in conf.supybot.getValues(getChildren=True):
|
||||
if word in name.lower():
|
||||
L.append(name)
|
||||
possibleChannel = registry.split(name)[-1]
|
||||
if not ircutils.isChannel(possibleChannel):
|
||||
L.append(name)
|
||||
if L:
|
||||
irc.reply(utils.commaAndify(L))
|
||||
else:
|
||||
|
@ -60,6 +60,11 @@ class ConfigTestCase(ChannelPluginTestCase):
|
||||
'supybot.commands.defaultPlugins.help',
|
||||
'AssertionError')
|
||||
|
||||
def testSearch(self):
|
||||
self.assertNotError('config search prefixChars')
|
||||
self.assertNotError('config channel prefixChars @')
|
||||
self.assertNotRegexp('config search prefixChars', self.channel)
|
||||
|
||||
|
||||
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user