modulemanager: add missing ipairs import.

This commit is contained in:
Marco Cirillo 2013-04-01 23:41:57 +00:00
parent a299b9096d
commit 4453095de2

View file

@ -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;