core.modulemanager: Silence warning about unused err variable [luacheck]

This commit is contained in:
Kim Alvefur 2019-12-20 22:38:45 +01:00
parent 5e83a19bc8
commit 3f89e9373b

View file

@ -246,7 +246,8 @@ local function do_reload_module(host, name)
local saved;
if module_has_method(mod, "save") then
local ok, ret, err = call_module_method(mod, "save");
-- FIXME What goes in 'err' here?
local ok, ret, err = call_module_method(mod, "save"); -- luacheck: ignore 211/err
if ok then
saved = ret;
else