diff options
| author | 2018-09-28 17:01:20 +0100 | |
|---|---|---|
| committer | 2018-09-28 17:01:20 +0100 | |
| commit | c5c2c50bc47ef466734d677cf75f29524b17da39 (patch) | |
| tree | 7fe3d5c5c6110abb907f3ea6548fc1e190196056 /start.py | |
| parent | Add missing 'self' to args of Timer.finish() (diff) | |
| signature | ||
Correctly access bot_settings in Timers.py
Diffstat (limited to 'start.py')
| -rwxr-xr-x | start.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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")) |
