core: Split some very long lines [luacheck]

This commit is contained in:
Kim Alvefur 2017-03-04 17:49:48 +01:00
parent 140c6de026
commit 1ecc3a7918
8 changed files with 35 additions and 16 deletions

View file

@ -70,7 +70,9 @@ end
local function destroy_session(session, reason)
if session.destroyed then return; end
(session.log or log)("debug", "Destroying "..tostring(session.direction).." session "..tostring(session.from_host).."->"..tostring(session.to_host)..(reason and (": "..reason) or ""));
(session.log or log)("debug", "Destroying "..tostring(session.direction)
.." session "..tostring(session.from_host).."->"..tostring(session.to_host)
..(reason and (": "..reason) or ""));
if session.direction == "outgoing" then
hosts[session.from_host].s2sout[session.to_host] = nil;