mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
prosodyctl: check turn: fix formatting of multiple warnings
This commit is contained in:
parent
c2af455ac0
commit
08777eb3d6
1 changed files with 3 additions and 2 deletions
|
@ -1250,8 +1250,9 @@ local function check(arg)
|
|||
|
||||
local result = check_turn_service(turn_service, opts.ping);
|
||||
if #result.warnings > 0 then
|
||||
print(("%d warnings:\n\n "):format(#result.warnings));
|
||||
print(table.concat(result.warnings, "\n "));
|
||||
print(("%d warnings:\n"):format(#result.warnings));
|
||||
print(" "..table.concat(result.warnings, "\n "));
|
||||
print("");
|
||||
end
|
||||
|
||||
if opts.verbose then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue