Software / code / prosody
Changeset
8989:5a25c5d22fe5
mod_groups: Adjust imports to avoid name clash [luacheck]
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sat, 07 Jul 2018 20:59:23 +0200 |
| parents | 8988:d92b8bc6614c |
| children | 8990:903351e082aa |
| files | plugins/mod_groups.lua |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_groups.lua Sat Jul 07 17:59:15 2018 +0200 +++ b/plugins/mod_groups.lua Sat Jul 07 20:59:23 2018 +0200 @@ -10,8 +10,8 @@ local groups; local members; -local jid, datamanager = require "util.jid", require "util.datamanager"; -local jid_prep = jid.prep; +local datamanager = require "util.datamanager"; +local jid_prep = require "util.jid".prep; local module_host = module:get_host();