mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Fix internationalisation bug in Config plugin
This commit is contained in:
parent
0998c2a43f
commit
13b194a4fe
@ -156,7 +156,7 @@ class Config(callbacks.Plugin):
|
|||||||
Searches for <word> in the current configuration variables.
|
Searches for <word> in the current configuration variables.
|
||||||
"""
|
"""
|
||||||
L = []
|
L = []
|
||||||
for (name, _) in conf.supybot.getValues(getChildren=True):
|
for (name, x) in conf.supybot.getValues(getChildren=True):
|
||||||
if word in name.lower():
|
if word in name.lower():
|
||||||
possibleChannel = registry.split(name)[-1]
|
possibleChannel = registry.split(name)[-1]
|
||||||
if not ircutils.isChannel(possibleChannel):
|
if not ircutils.isChannel(possibleChannel):
|
||||||
|
Loading…
Reference in New Issue
Block a user