util/prosodyctl/check.lua
changeset 13320 a27a329e93ca
parent 13306 30b7cd40ee14
child 13328 6f371066d6e0
--- a/util/prosodyctl/check.lua	Sat Nov 11 19:16:50 2023 +0100
+++ b/util/prosodyctl/check.lua	Sat Nov 11 21:33:53 2023 +0100
@@ -506,9 +506,9 @@
 			end
 			for k, v in pairs(modules) do
 				if type(k) ~= "number" or type(v) ~= "string" then
-					print("    The " .. name .. " in the " .. host .. " section should not be a map of " .. type(k) .. " to " .. type(v)
-									.. " but a list of strings, e.g.");
+					print("    The " .. name .. " in the " .. host .. " section should be a list of strings, e.g.");
 					print("    " .. name .. " = { \"name_of_module\", \"another_plugin\", }")
+					print("    It should not contain key = value pairs, try putting them outside the {} brackets.");
 					ok = false
 					break
 				end