This commit is contained in:
yagop 2014-07-08 21:05:01 +02:00
parent 3737158548
commit 7806289d92
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ end
function write_to_file(filename, value)
if (value) then
local file = io.open(filename,"a")
file:write(value)
file:write(value, "\n")
file:close()
end
end