diff options
author | Kim Alvefur <zash@zash.se> | 2016-02-25 22:31:13 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-02-25 22:31:13 +0100 |
commit | 1e4a5f2baa17be8ea10bbd9973c3d87dd23c3223 (patch) | |
tree | 854ece020a56e3083a310cd2770a4eabaaa4498d | |
parent | 05db1004dc198727112080224c97cb586760ab1d (diff) | |
download | prosody-1e4a5f2baa17be8ea10bbd9973c3d87dd23c3223.tar.gz prosody-1e4a5f2baa17be8ea10bbd9973c3d87dd23c3223.zip |
util.template: Silence luacheck warnings about unused loop vars
-rw-r--r-- | util/template.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/template.lua b/util/template.lua index a26dd7ca..f72c4ede 100644 --- a/util/template.lua +++ b/util/template.lua @@ -1,4 +1,4 @@ - +-- luacheck: ignore 213/i local stanza_mt = require "util.stanza".stanza_mt; local setmetatable = setmetatable; local pairs = pairs; |