diff options
author | Kim Alvefur <zash@zash.se> | 2017-06-13 20:10:40 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-06-13 20:10:40 +0200 |
commit | 547eeb1267f72301e8db308fc28ef0489220d797 (patch) | |
tree | 16174daa5921c458747e090baec757718b565eb9 /plugins | |
parent | 146583f09ad5d4ecee4c10b9e5b6ac6ab8024bfa (diff) | |
download | prosody-547eeb1267f72301e8db308fc28ef0489220d797.tar.gz prosody-547eeb1267f72301e8db308fc28ef0489220d797.zip |
mod_posix: Split long line [luacheck]
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_posix.lua | 3 |
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"); |