Changeset

8110:9aeb1c631f62

prosodyctl: Split long line [luacheck]
author Kim Alvefur <zash@zash.se>
date Fri, 21 Apr 2017 14:44:28 +0200
parents 8109:2f214c4db170
children 8111:3cbb311f8468
files prosodyctl
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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