Skip to content
Snippets Groups Projects
Commit 62f2bc46 authored by Otowa Kotori's avatar Otowa Kotori
Browse files

update change line

parent ebc95f46
No related branches found
No related tags found
No related merge requests found
......@@ -292,13 +292,13 @@ end
local output_filename ={}
local output_content = {}
local function copy_file(filename)
local fc = io.open(filename, "rb")
local result = 'locale "' .. locale .. '"'
local fc = io.open(filename, "r")
local result = 'locale "' .. locale .. '"\n'
if fc then
while true do
local l = fc:read()
if not l then break end
result = result .. l
result = result .. l .. "\n"
end
end
return result .. "\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment