diff options
-rw-r--r-- | libs/core/luasrc/util.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/core/luasrc/util.lua b/libs/core/luasrc/util.lua index 14bd1e79bf..2ede71a264 100644 --- a/libs/core/luasrc/util.lua +++ b/libs/core/luasrc/util.lua @@ -190,7 +190,7 @@ function dumptable(t, i, seen) seen = seen or setmetatable({}, {__mode="k"}) for k,v in pairs(t) do - perror(string.rep("\t", i) .. tostring(k), tostring(v)) + perror(string.rep("\t", i) .. tostring(k) .. "\t" .. tostring(v)) if type(v) == "table" then if not seen[v] then seen[v] = true |