]> jfr.im git - erebus.git/blobdiff - erebus.py
add load OK checking/logging to bot statup module loading
[erebus.git] / erebus.py
index c03c98053d0577093b2fe6da39cf34342baf9dd9..b237347d27b73b68f06c21f045c84db449306ba3 100644 (file)
--- 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()