prosodyctl: Split long line [luacheck]
authorKim Alvefur <zash@zash.se>
Fri, 21 Apr 2017 14:44:28 +0200
changeset 8113 9aeb1c631f62
parent 8112 2f214c4db170
child 8114 3cbb311f8468
prosodyctl: Split long line [luacheck]
prosodyctl
--- a/prosodyctl	Fri Apr 21 14:43:52 2017 +0200
+++ b/prosodyctl	Fri Apr 21 14:44:28 2017 +0200
@@ -139,7 +139,10 @@
 local have_pposix, pposix = pcall(require, "util.pposix");
 
 if have_pposix and pposix then
-	if pposix._VERSION ~= want_pposix_version then print(string.format("Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), want_pposix_version)); return; end
+	if pposix._VERSION ~= want_pposix_version then
+		print(string.format("Unknown version (%s) of binary pposix module, expected %s",
+			tostring(pposix._VERSION), want_pposix_version)); return;
+	end
 	current_uid = pposix.getuid();
 	local arg_root = arg[1] == "--root";
 	if arg_root then table.remove(arg, 1); end