aboutsummaryrefslogtreecommitdiffstats
path: root/core/modulemanager.lua
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
commitbf1ce76f609162874ec87bd3dbbf81442bcd0be0 (patch)
treee3fa8cff968af77d52287ea259e09387696e75de /core/modulemanager.lua
parent2a5ae358a2fbb0968e51efaf94ba4688dfc6de63 (diff)
downloadprosody-bf1ce76f609162874ec87bd3dbbf81442bcd0be0.tar.gz
prosody-bf1ce76f609162874ec87bd3dbbf81442bcd0be0.zip
modulemanager: add missing ipairs import.
Diffstat (limited to 'core/modulemanager.lua')
-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;