mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.xml: Fix float formatting of line and columns in error (on Lua 5.3+)
This commit is contained in:
parent
7eb15b0b3f
commit
f875b6f99c
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ local parse_xml = (function()
|
|||
if ok then
|
||||
return stanza.tags[1];
|
||||
else
|
||||
return ok, err.." (line "..line..", col "..col..")";
|
||||
return ok, ("%s (line %d, col %d))"):format(err, line, col);
|
||||
end
|
||||
end;
|
||||
end)();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue