From 6eaa081725127f657ae5bae5ecd9f1ea024f317e Mon Sep 17 00:00:00 2001 From: neersighted Date: Tue, 28 Feb 2012 16:30:47 -0800 Subject: [PATCH] Updated default connection --- core/config.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/core/config.py b/core/config.py index ff40dfa..f1d1c48 100755 --- a/core/config.py +++ b/core/config.py @@ -12,14 +12,14 @@ if not os.path.exists('config'): { "connections": { - "test connection": + "EsperNet": { - "server": "localhost", - "nick": "nickname", + "server": "irc.esper.net", + "nick": "MyNewCloudBot", "user": "cloudbot", "realname": "CloudBot - http://git.io/cloudbot", "nickserv_password": "", - "channels": ["#channel"], + "channels": ["#cloudbot"], "invitejoin": "True", "autorejoin": "False", "command_prefix": ".", @@ -56,7 +56,8 @@ if not os.path.exists('config'): "admins": ["myname"] }''') + '\n') print "Config generated!" - print "Please edit the config now." + print "Please edit the config now!" + print "(The default config will work, but you most likely want to change it)" print "For help, see http://git.io/cloudbotwiki" print "Thank you for using CloudBot!" sys.exit()