prosodyctl: Use the global events objects for hosts (again) (thanks albert) (sorry albert)

This commit is contained in:
Matthew Wild 2010-05-05 20:35:06 +01:00
parent 2d20f6c05c
commit d0c208f5f1

View file

@ -123,7 +123,7 @@ local error_messages = setmetatable({
hosts = prosody.hosts;
for hostname, config in pairs(config.getconfig()) do
hosts[hostname] = { events = require "util.events".new() };
hosts[hostname] = { events = prosody.events };
end
require "core.modulemanager"