aboutsummaryrefslogtreecommitdiffstats
path: root/util/format.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-06-29 16:18:31 +0200
committerKim Alvefur <zash@zash.se>2021-06-29 16:18:31 +0200
commit6e037dc0453639c0c56c06f51ddafca051b1e925 (patch)
tree3bbcd05e8cf24bbfe0be79d37cbf07c78707b10c /util/format.lua
parentbfb4514d0fc0aeaacf9f5fb741d67fd36bd2774a (diff)
downloadprosody-6e037dc0453639c0c56c06f51ddafca051b1e925.tar.gz
prosody-6e037dc0453639c0c56c06f51ddafca051b1e925.zip
util.format: Change formatting of nil values to avoid looking like XML
Diffstat (limited to 'util/format.lua')
-rw-r--r--util/format.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/format.lua b/util/format.lua
index d9d771ea..72f909b8 100644
--- a/util/format.lua
+++ b/util/format.lua
@@ -55,7 +55,7 @@ local function format(formatstring, ...)
local option = spec:sub(-1);
if arg == nil then
args[i] = "nil";
- spec = "<%s>";
+ spec = "(%s)";
elseif option == "q" then
args[i] = dump(arg);
spec = "%s";
@@ -77,7 +77,7 @@ local function format(formatstring, ...)
i = i + 1;
local arg = args[i];
if arg == nil then
- args[i] = "<nil>";
+ args[i] = "(nil)";
else
args[i] = tostring(arg);
end