Changed networks to be case-insensitive.

This commit is contained in:
Jeremy Fincher 2004-08-28 19:56:31 +00:00
parent 5f90e63937
commit 6c9d74e728
1 changed files with 3 additions and 2 deletions

View File

@ -185,9 +185,10 @@ registerGlobalValue(supybot, 'user',
sends to the server."""))
class Networks(registry.SpaceSeparatedSetOfStrings):
List = ircutils.IrcSet
registerGlobalValue(supybot, 'networks',
registry.SpaceSeparatedSetOfStrings([], """Determines what networks the bot
will connect to."""))
Networks([], """Determines what networks the bot will connect to."""))
class Servers(registry.SpaceSeparatedListOfStrings):
def normalize(self, s):