prosodyctl: Fix using variable content in a format string

This broke if the error message contained a format specified such as '%s'.
This commit is contained in:
Matthew Wild 2023-04-07 15:54:59 +01:00
parent d840f27320
commit 6d8647b333

View file

@ -669,7 +669,7 @@ local command_runner = async.runner(function ()
end
os.exit(0, true); -- :)
else
show_message("Failed to execute command: "..error_messages[ret]);
show_message("Failed to execute command: %s", error_messages[ret]);
os.exit(1); -- :(
end
end