Restore old output format of dump()

master
Diego Martínez 2013-06-16 03:06:41 -03:00 committed by PilzAdam
parent 26165453d2
commit e65ac4d626
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ function dump(o, dumped)
dumped[o] = true
local t = {}
for k,v in pairs(o) do
t[#t+1] = "" .. dump(k, dumped) .. " = " .. dump(v, dumped)
t[#t+1] = "[" .. dump(k, dumped) .. "] = " .. dump(v, dumped)
end
return "{" .. table.concat(t, ", ") .. "}"
elseif type(o) == "boolean" then