1
0
Fork 0

Fixed empty module configuration

This commit is contained in:
nemunaire 2015-11-15 01:58:35 +01:00
parent e83c4091bf
commit 31d93734a6
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ class ModuleContext:
module_name in context.modules_configuration):
self.config = context.modules_configuration[module_name]
else:
from nemubot.tools.xmlparser.node import ModuleState
self.config = ModuleState("module")
from nemubot.config.module import Module
self.config = Module(module_name)
self.hooks = list()
self.events = list()