Merge from Matthew. datamanager.simplesave fix

This commit is contained in:
Waqas Hussain 2008-10-09 03:01:47 +05:00
commit 042012b729

View file

@ -43,7 +43,7 @@ local function simplesave (f, o)
elseif type(o) == "table" then
f:write("{\n")
for k,v in pairs(o) do
f:write(" [", format("%q", k), "] = ")
f:write(" [", basicSerialize(k), "] = ")
simplesave(f, v)
f:write(",\n")
end