# HG changeset patch # User Matthew Wild # Date 1431972326 -3600 # Node ID 03a283aa679eec96ab04335a7b68e5e4e1db45b8 # Parent 429068c24ea0deddafce79d84c111702d90e4c5c configmanager: Rename unused function argument [luacheck] diff -r 429068c24ea0 -r 03a283aa679e core/configmanager.lua --- a/core/configmanager.lua Mon May 18 19:05:08 2015 +0100 +++ b/core/configmanager.lua Mon May 18 19:05:26 2015 +0100 @@ -28,7 +28,7 @@ local parsers = {}; -local config_mt = { __index = function (t, k) return rawget(t, "*"); end}; +local config_mt = { __index = function (t, _) return rawget(t, "*"); end}; local config = setmetatable({ ["*"] = { } }, config_mt); -- When host not found, use global