Changed DB format from 2 space indent to tabs.

Requested by ShadowNinja.
This commit is contained in:
Diego Martinez 2014-05-19 23:39:46 -03:00
parent 8695476beb
commit 7409fd1be8
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ end
local function my_serialize_2(t, level)
level = level or 0
local lines = { }
local indent = (" "):rep(level)
local indent = ("\t"):rep(level)
for k, v in pairs(t) do
local typ = type(v)
if typ == "table" then