Skip to content
Snippets Groups Projects
Commit 0f7567d2 authored by Marek Vavruša's avatar Marek Vavruša
Browse files

daemon/lua: fixed output printing

parent bf28ef7f
Branches
Tags
No related merge requests found
......@@ -141,7 +141,7 @@ function table_print (tt, indent, done)
if type (value) == "table" and not done [value] then
done [value] = true
result = result .. string.format("[%s] => {\n", tostring (key))
table_print (value, indent + 4, done)
result = result .. table_print (value, indent + 4, done)
result = result .. string.rep (" ", indent)
result = result .. "}\n"
else
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment