verse.plugins.groupchat: Fix import of util.events

Sun, 20 May 2018 01:24:39 +0200

author
Kim Alvefur <zash@zash.se>
date
Sun, 20 May 2018 01:24:39 +0200
changeset 418
40b8cc364274
parent 417
d46a502955c0
child 419
bf2fe3fc2f73

verse.plugins.groupchat: Fix import of util.events

It probably worked before because of module()

plugins/groupchat.lua file | annotate | diff | comparison | revisions
--- a/plugins/groupchat.lua	Sun May 20 01:16:22 2018 +0200
+++ b/plugins/groupchat.lua	Sun May 20 01:24:39 2018 +0200
@@ -1,5 +1,5 @@
 local verse = require "verse";
-local events = require "events";
+local events = require "util.events";
 local jid = require "util.jid";
 
 local room_mt = {};

mercurial