~dennis/ubot/trunk

« back to all changes in this revision

Viewing changes to ubot/bot.py

  • Committer: Dennis Kaarsemaker
  • Date: 2008-03-17 21:39:35 UTC
  • Revision ID: dennis@blackbird-20080317213935-migv1bllicjgqd8j
* A few small fixes
* Small doc update (really needs more)
* Add stubby bugtracker helper
* Add encyclopedia helper

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
        dbus.service.Object.__init__(self, dbus.SessionBus(), '/net/seveas/ubot/' + config.busname)
17
17
        self.logfd = open(self.config.logfile,'a')
18
18
        data = {}
 
19
        self.ignores = []
19
20
        if os.path.exists(self.config.datafile):
20
21
            fd = open(self.config.datafile)
21
22
            data = pickle.load(fd)