aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMarco Cirillo <maranda@lightwitch.org>2013-04-01 23:41:57 +0000
committerMarco Cirillo <maranda@lightwitch.org>2013-04-01 23:41:57 +0000
commit4453095de2be99c78b1cede797cb0c468458e84d (patch)
treee3fa8cff968af77d52287ea259e09387696e75de /core
parenta299b9096dd1dfdf50e6970784d7f2878b17876d (diff)
downloadprosody-4453095de2be99c78b1cede797cb0c468458e84d.tar.gz
prosody-4453095de2be99c78b1cede797cb0c468458e84d.zip
modulemanager: add missing ipairs import.
Diffstat (limited to 'core')
-rw-r--r--core/modulemanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua
index 48afe787..535c227b 100644
--- a/core/modulemanager.lua
+++ b/core/modulemanager.lua
@@ -19,7 +19,7 @@ local prosody = prosody;
local pcall, xpcall = pcall, xpcall;
local setmetatable, rawget = setmetatable, rawget;
-local pairs, type, tostring, t_insert = pairs, type, tostring, table.insert;
+local ipairs, pairs, type, tostring, t_insert = ipairs, pairs, type, tostring, table.insert;
local debug_traceback = debug.traceback;
local unpack, select = unpack, select;