aboutsummaryrefslogtreecommitdiffstats
path: root/core/modulemanager.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-03-04 17:49:48 +0100
committerKim Alvefur <zash@zash.se>2017-03-04 17:49:48 +0100
commit014168ff18ff0216c649ca687523ab96768a9b0d (patch)
tree91aa73ddb7089baef93b2e47966f53c5c945ed52 /core/modulemanager.lua
parentc284110cb40cb2347f82e974f76eb6bc6927e946 (diff)
downloadprosody-014168ff18ff0216c649ca687523ab96768a9b0d.tar.gz
prosody-014168ff18ff0216c649ca687523ab96768a9b0d.zip
core: Split some very long lines [luacheck]
Diffstat (limited to 'core/modulemanager.lua')
-rw-r--r--core/modulemanager.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua
index 7bed1795..771f6fb1 100644
--- a/core/modulemanager.lua
+++ b/core/modulemanager.lua
@@ -39,7 +39,8 @@ local _G = _G;
local _ENV = nil;
-local load_modules_for_host, load, unload, reload, get_module, get_items, get_modules, is_loaded, module_has_method, call_module_method;
+local load_modules_for_host, load, unload, reload, get_module, get_items;
+local get_modules, is_loaded, module_has_method, call_module_method;
-- [host] = { [module] = module_env }
local modulemap = { ["*"] = {} };