aboutsummaryrefslogtreecommitdiffstats
path: root/core/loggingmanager.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-02-18 14:57:51 +0100
committerKim Alvefur <zash@zash.se>2016-02-18 14:57:51 +0100
commitcecd6ca31df847722dc98eb88d374bc58f3020c8 (patch)
tree0b6205b026211531455525fc1a9d4f7d8c0f7368 /core/loggingmanager.lua
parentde7b01d7d2d4360f44e24a6d573c001e083de059 (diff)
downloadprosody-cecd6ca31df847722dc98eb88d374bc58f3020c8.tar.gz
prosody-cecd6ca31df847722dc98eb88d374bc58f3020c8.zip
loggingmanager,modulemanager,moduleapi: Ignore warning about accessing _G.unpack [luacheck]
Diffstat (limited to 'core/loggingmanager.lua')
-rw-r--r--core/loggingmanager.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/loggingmanager.lua b/core/loggingmanager.lua
index 14dd4360..e3a83817 100644
--- a/core/loggingmanager.lua
+++ b/core/loggingmanager.lua
@@ -16,7 +16,8 @@ local math_max, rep = math.max, string.rep;
local os_date = os.date;
local getstyle, getstring = require "util.termcolours".getstyle, require "util.termcolours".getstring;
local tostring = tostring;
-local select, unpack = select, table.unpack or unpack;
+local select = select;
+local unpack = table.unpack or unpack; --luacheck: ignore 113
local config = require "core.configmanager";
local logger = require "util.logger";