From 0b81b170cae9496364f601b044ce90e94904d628 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Thu, 4 Oct 2012 21:41:00 -0400 Subject: [PATCH] Indicate supybot.networks.$network.servers/channels are space-separated lists in their help Signed-off-by: James McCoy --- src/conf.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/conf.py b/src/conf.py index 4172aa92a..b8506e5df 100644 --- a/src/conf.py +++ b/src/conf.py @@ -257,11 +257,12 @@ def registerNetwork(name, password='', ssl=False): technically passwords are server-specific and not network-specific, but this is the best we can do right now.""" % name, private=True)) registryServers = registerGlobalValue(network, 'servers', Servers([], - """Determines what servers the bot will connect to for %s. Each will - be tried in order, wrapping back to the first when the cycle is - completed.""" % name)) + """Space-separated list of servers the bot will connect to for %s. + Each will be tried in order, wrapping back to the first when the cycle + is completed.""" % name)) registerGlobalValue(network, 'channels', SpaceSeparatedSetOfChannels([], - """Determines what channels the bot will join only on %s.""" % name)) + """Space-separated list of channels the bot will join only on %s.""" + % name)) registerGlobalValue(network, 'ssl', registry.Boolean(ssl, """Determines whether the bot will attempt to connect with SSL sockets to %s.""" % name))