diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-05-06 19:02:44 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-05-06 19:02:44 +0100 |
commit | a068b1d383cec6efe572ade50a60df2f9d6f1de5 (patch) | |
tree | 1543cbabfed6965b5034eba7d70950724b957392 | |
parent | e5323b0c7fac6ae251228473407591139dcd0e58 (diff) | |
download | prosody-a068b1d383cec6efe572ade50a60df2f9d6f1de5.tar.gz prosody-a068b1d383cec6efe572ade50a60df2f9d6f1de5.zip |
moduleapi: Add luacheck annotation
-rw-r--r-- | core/moduleapi.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua index fbb131ec..9e07d6a9 100644 --- a/core/moduleapi.lua +++ b/core/moduleapi.lua @@ -55,7 +55,7 @@ function api:set_global() self.host = "*"; -- Update the logger local _log = logger.init("mod_"..self.name); - self.log = function (self, ...) return _log(...); end; + self.log = function (self, ...) return _log(...); end; --luacheck: ignore self self._log = _log; self.global = true; end |