aboutsummaryrefslogtreecommitdiff
path: root/start.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-09-28 17:01:20 +0100
committerGravatar jesopo2018-09-28 17:01:20 +0100
commitc5c2c50bc47ef466734d677cf75f29524b17da39 (patch)
tree7fe3d5c5c6110abb907f3ea6548fc1e190196056 /start.py
parentAdd missing 'self' to args of Timer.finish() (diff)
signature
Correctly access bot_settings in Timers.py
Diffstat (limited to 'start.py')
-rwxr-xr-xstart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/start.py b/start.py
index 9783d4d7..55d084fc 100755
--- a/start.py
+++ b/start.py
@@ -35,7 +35,7 @@ config = Config.Config(args.config)
database = Database.Database(log, args.database)
events = events = EventManager.EventHook(log)
exports = exports = Exports.Exports()
-timers = Timers.Timers(events, log)
+timers = Timers.Timers(database, events, log)
line_handler = IRCLineHandler.LineHandler(events, timers)
modules = modules = ModuleManager.ModuleManager(events, exports, config, log,
os.path.join(directory, "modules"))