Changed around some status messages

This commit is contained in:
Luke Rogers 2012-05-09 11:13:32 +12:00
parent 4ebddda3c8
commit e0fea39922

7
bot.py
View file

@ -23,7 +23,7 @@ os.chdir(sys.path[0] or '.') # do stuff relative to the install directory
class Bot(object): class Bot(object):
pass pass
print 'Welcome to Cloudbot - Version DEV - http://git.io/cloudbotirc' print 'CloudBot 1.x (DEVELOPMENT) <https://github.com/ClouDev/CloudBot/>'
bot = Bot() bot = Bot()
bot.start_time = time.time() bot.start_time = time.time()
@ -45,6 +45,7 @@ bot.conns = {}
try: try:
for name, conf in bot.config['connections'].iteritems(): for name, conf in bot.config['connections'].iteritems():
print 'Connecting to server: %s' % conf['server']
if conf.get('ssl'): if conf.get('ssl'):
bot.conns[name] = SSLIRC(name, conf['server'], conf['nick'], conf=conf, bot.conns[name] = SSLIRC(name, conf['server'], conf['nick'], conf=conf,
port=conf.get('port', 6667), channels=conf['channels'], port=conf.get('port', 6667), channels=conf['channels'],
@ -52,7 +53,7 @@ try:
else: else:
bot.conns[name] = IRC(name, conf['server'], conf['nick'], conf=conf, bot.conns[name] = IRC(name, conf['server'], conf['nick'], conf=conf,
port=conf.get('port', 6667), channels=conf['channels']) port=conf.get('port', 6667), channels=conf['channels'])
except Exception, e: except Exception as e:
print 'ERROR: malformed config file', e print 'ERROR: malformed config file', e
sys.exit() sys.exit()
@ -60,7 +61,7 @@ bot.persist_dir = os.path.abspath('persist')
if not os.path.exists(bot.persist_dir): if not os.path.exists(bot.persist_dir):
os.mkdir(bot.persist_dir) os.mkdir(bot.persist_dir)
print 'Connection(s) made.' print 'Connection(s) made, starting main loop.'
while True: while True:
reload() # these functions only do things reload() # these functions only do things