aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-06-13 20:10:40 +0200
committerKim Alvefur <zash@zash.se>2017-06-13 20:10:40 +0200
commit60a5d606c61c7a552a1ac1b1b373f999b5e8b291 (patch)
tree16174daa5921c458747e090baec757718b565eb9
parent9e04351ec4952f458374d6d0de2975baed8ab41c (diff)
downloadprosody-60a5d606c61c7a552a1ac1b1b373f999b5e8b291.tar.gz
prosody-60a5d606c61c7a552a1ac1b1b373f999b5e8b291.zip
mod_posix: Split long line [luacheck]
-rw-r--r--plugins/mod_posix.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/mod_posix.lua b/plugins/mod_posix.lua
index bf8b5cc5..9c1dff3d 100644
--- a/plugins/mod_posix.lua
+++ b/plugins/mod_posix.lua
@@ -11,7 +11,8 @@ local want_pposix_version = "0.4.0";
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");