diff options
author | Kim Alvefur <zash@zash.se> | 2017-11-10 17:47:11 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-11-10 17:47:11 +0100 |
commit | c904d1e28dbf00d2deee806ddb8de08be0eb0218 (patch) | |
tree | 105402674b1ad12890bdc6f3dcd12118ce57591f /util/sql.lua | |
parent | fc6e0a089d6d54aa547014eb4217fa77fe8fc3a4 (diff) | |
download | prosody-c904d1e28dbf00d2deee806ddb8de08be0eb0218.tar.gz prosody-c904d1e28dbf00d2deee806ddb8de08be0eb0218.zip |
util: Ignore some Lua 5.1 vs 5.2 compat things [luacheck]
Diffstat (limited to 'util/sql.lua')
-rw-r--r-- | util/sql.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/sql.lua b/util/sql.lua index 1dd278eb..9648101a 100644 --- a/util/sql.lua +++ b/util/sql.lua @@ -1,6 +1,6 @@ local setmetatable, getmetatable = setmetatable, getmetatable; -local ipairs, unpack, select = ipairs, table.unpack or unpack, select; --luacheck: ignore 113 +local ipairs, unpack, select = ipairs, table.unpack or unpack, select; --luacheck: ignore 113 143 local tostring = tostring; local type = type; local assert, pcall, xpcall, debug_traceback = assert, pcall, xpcall, debug.traceback; |