X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/7631844f5bbb005b130cccc33d2dce9510c0f9df..fb20be7c5c80f13474786337d69005f3497d21c6:/erebus.py diff --git a/erebus.py b/erebus.py index c03c980..b237347 100644 --- a/erebus.py +++ b/erebus.py @@ -59,7 +59,7 @@ class Erebus(object): def quit(self): for chan in self.chans: self.chans.remove(chan) - def nick(self, newnick): + def nickchange(self, newnick): self.nick = newnick def __str__(self): return self.nick @@ -257,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()