Skip to content

Commit

Permalink
Fixed script error: had a stray ".." after the switch to string tables.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 7, 2009
1 parent 2135bfc commit 69c7b79
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/mojosetup_mainline.lua
Expand Up @@ -898,7 +898,8 @@ local function serialize(obj, prefix, postfix)
_serialize(v, indent+1)
addstr(",\n")
end
retval = retval .. string.rep("\t", indent-1) .. "}"
addstr(string.rep("\t", indent-1))
addstr("}")
else
MojoSetup.logerror("unexpected object to serialize (" ..
objtype .. "): '" .. tostring(obj) .. "'")
Expand Down

0 comments on commit 69c7b79

Please sign in to comment.