diff options
-rw-r--r-- | lib/fs.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,7 +72,7 @@ function write_line_file ( path, str ) if ( file) then local c = file:read("*a") file:close() - local d = (c .. "\n" .. str .. "\n") + local d = (c .. str .. "\n") -- include a friendly newline for EOF fs.write_file(path,d) end |