From 481752fddd0fedbca4512e14b47348fa841a8a94 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sat, 18 Dec 2004 13:52:38 +0000 Subject: [PATCH] Forgot to set the password to private, oops. --- src/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf.py b/src/conf.py index 032dbeae9..e21bf39a9 100644 --- a/src/conf.py +++ b/src/conf.py @@ -240,7 +240,7 @@ def registerNetwork(name, password=''): registerGlobalValue(network, 'password', registry.String(password, """Determines what password will be used on %s. Yes, we know that technically passwords are server-specific and not network-specific, - but this is the best we can do right now.""" % name)) + 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