Fix the return value

This commit is contained in:
Rui 2016-11-05 15:20:07 +09:00 committed by GitHub
parent ffb24d285f
commit 66c935c91c

@ -8,7 +8,7 @@ dofile(modpath .. "/api.lua")
local depends = (function()
local file = io.open(modpath .. "/depends.txt")
if not file then
return
return {}
end
local depends = {}