util/serialization: Fixed serialization formatting

This commit is contained in:
Waqas Hussain 2009-05-08 01:06:45 +05:00
parent babc0d7992
commit 5cd003581a

View file

@ -53,7 +53,7 @@ local function _simplesave(o, ind, t, func)
func(t, (o and "true" or "false"));
else
log("error", "cannot serialize a %s: %s", type(o), debug_traceback())
func(t, "nil,\n");
func(t, "nil");
end
end