X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/fd52fb165f70d0b10f123ac9468fbf66d45f92f8..dcb94ddca201b098020742aa70b79d14d183b854:/erebus.py diff --git a/erebus.py b/erebus.py index 2783bd5..b237347 100644 --- a/erebus.py +++ b/erebus.py @@ -3,8 +3,6 @@ # Erebus IRC bot - Author: John Runyon # main startup code -#TODO: tons - import os, sys, select, MySQLdb, MySQLdb.cursors, time, random import bot, config, ctlmod @@ -28,6 +26,9 @@ class Erebus(object): self.chans = [] + def msg(self, *args, **kwargs): + main.randbot.msg(self, *args, **kwargs) + def isauthed(self): return self.auth is not None @@ -58,6 +59,8 @@ class Erebus(object): def quit(self): for chan in self.chans: self.chans.remove(chan) + def nickchange(self, newnick): + self.nick = newnick def __str__(self): return self.nick def __repr__(self): return "" % (self.nick,self.glevel) @@ -254,8 +257,14 @@ def setup(): autoloads = [mod for mod, yes in cfg.items('autoloads') if int(yes) == 1] for mod in autoloads: - print "Loading %s" % (mod) - ctlmod.load(main, mod) + print "Loading %s ... " % (mod), + modstatus = ctlmod.load(main, mod) + if not modstatus: + print str(modstatus) + elif modstatus == True: + print "OK" + else: + print modstatus dbsetup() c = main.db.cursor()