Software /
code /
prosody
Changeset
7792:0bc6c3704973
net.http: Remove unused imports [luacheck]
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 30 Dec 2016 18:25:23 +0100 |
parents | 7790:0310ab4f277f |
children | 7793:4f1b5596250b |
files | net/http.lua |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/net/http.lua Mon Dec 19 09:32:43 2016 +0100 +++ b/net/http.lua Fri Dec 30 18:25:23 2016 +0100 @@ -17,9 +17,9 @@ local t_insert, t_concat = table.insert, table.concat; local pairs = pairs; -local tonumber, tostring, xpcall, select, traceback = - tonumber, tostring, xpcall, select, debug.traceback; -local assert, error = assert, error +local tonumber, tostring, xpcall, traceback = + tonumber, tostring, xpcall, debug.traceback; +local error = error local log = require "util.logger".init("http");