Software /
code /
prosody
Changeset
8166:bbedf564b9f9
mod_posix: Split long line [luacheck]
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 13 Jun 2017 20:10:40 +0200 |
parents | 8164:a395957f3bf2 |
children | 8167:39188851811c |
files | plugins/mod_posix.lua |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
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");