diff options
| author | 2019-05-30 17:28:07 +0100 | |
|---|---|---|
| committer | 2019-05-30 17:28:07 +0100 | |
| commit | 3456bb561c639f9814d26f71d3f9c6eaa1f6ed94 (patch) | |
| tree | dc4ed698397960ec25fe137e3014787393ebb9f3 /start.py | |
| parent | Remove empty _random_string declaration (diff) | |
| signature | ||
module.load_module takes a ModuleDefinition these days!
Diffstat (limited to 'start.py')
| -rwxr-xr-x | start.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -77,7 +77,8 @@ bot = IRCBot.Bot(directory, args, cache, config, database, events, exports, log, modules, timers) if args.module: - module = modules.load_module(bot, args.module) + definition = modules.find_module(args.module) + module = modules.load_module(bot, definition) module.module.command_line(args.module_args) sys.exit(0) |
