Software /
code /
prosody
Diff
plugins/mod_posix.lua @ 8166:bbedf564b9f9
mod_posix: Split long line [luacheck]
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 13 Jun 2017 20:10:40 +0200 |
parent | 8116:76ac8b617402 |
child | 8167:39188851811c |
line wrap: on
line diff
--- a/plugins/mod_posix.lua Tue Jun 13 16:38:52 2017 +0200 +++ b/plugins/mod_posix.lua Tue Jun 13 20:10:40 2017 +0200 @@ -11,7 +11,8 @@ local pposix = assert(require "util.pposix"); if pposix._VERSION ~= want_pposix_version then - module:log("warn", "Unknown version (%s) of binary pposix module, expected %s. Perhaps you need to recompile?", tostring(pposix._VERSION), want_pposix_version); + module:log("warn", "Unknown version (%s) of binary pposix module, expected %s." + .. "Perhaps you need to recompile?", tostring(pposix._VERSION), want_pposix_version); end local have_signal, signal = pcall(require, "util.signal");