Changeset

418:40b8cc364274

verse.plugins.groupchat: Fix import of util.events It probably worked before because of module()
author Kim Alvefur <zash@zash.se>
date Sun, 20 May 2018 01:24:39 +0200
parents 417:d46a502955c0
children 419:bf2fe3fc2f73
files plugins/groupchat.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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 = {};