# HG changeset patch # User Kim Alvefur # Date 1497377440 -7200 # Node ID bbedf564b9f9cc9a699bc57098bcef27c7dc3f36 # Parent a395957f3bf2bfca515499ff84925fc36ba60b0d mod_posix: Split long line [luacheck] diff -r a395957f3bf2 -r bbedf564b9f9 plugins/mod_posix.lua --- 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");