Merge branch 'small-improvements'

This commit is contained in:
Unknown 2018-02-25 00:44:58 +03:00
commit 9b6ab097a7

View file

@ -220,7 +220,8 @@ local function table_dump_to_file(dumped_table, dumped_table_name, max_depth)
-- ## Saving to file ## -- ## Saving to file ##
-- #################### -- ####################
local file = assert(io.open(dumped_table_name .. ".json", "w+")) os.execute("mkdir dump 2>nul")
local file = assert(io.open("./dump/" .. dumped_table_name .. ".json", "w+"))
local function dump_to_file(table_entry, table_name, depth) local function dump_to_file(table_entry, table_name, depth)