diff options
author | Marco Cirillo <maranda@lightwitch.org> | 2013-04-01 23:41:57 +0000 |
---|---|---|
committer | Marco Cirillo <maranda@lightwitch.org> | 2013-04-01 23:41:57 +0000 |
commit | 70370a142a00d8630d55554f320810f7d066583c (patch) | |
tree | e3fa8cff968af77d52287ea259e09387696e75de | |
parent | 673b4913a0606a3e407ef2a3636372153ede9853 (diff) | |
download | prosody-70370a142a00d8630d55554f320810f7d066583c.tar.gz prosody-70370a142a00d8630d55554f320810f7d066583c.zip |
modulemanager: add missing ipairs import.
-rw-r--r-- | core/modulemanager.lua | 2 |
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; |