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 | 4453095de2be99c78b1cede797cb0c468458e84d (patch) | |
tree | e3fa8cff968af77d52287ea259e09387696e75de | |
parent | a299b9096dd1dfdf50e6970784d7f2878b17876d (diff) | |
download | prosody-4453095de2be99c78b1cede797cb0c468458e84d.tar.gz prosody-4453095de2be99c78b1cede797cb0c468458e84d.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; |