From f6cd03db536ce0765631622f4a43c5dab8891ba8 Mon Sep 17 00:00:00 2001 From: Mattes D Date: Sun, 11 Oct 2015 21:25:40 +0200 Subject: [PATCH] APIDump: Added a missing endline to the NewlyUndocumented output file. --- Server/Plugins/APIDump/main_APIDump.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/Server/Plugins/APIDump/main_APIDump.lua b/Server/Plugins/APIDump/main_APIDump.lua index 7cbd0d160..68c843016 100644 --- a/Server/Plugins/APIDump/main_APIDump.lua +++ b/Server/Plugins/APIDump/main_APIDump.lua @@ -1749,6 +1749,7 @@ local function HandleCmdApiCheck(a_Split, a_EntireCmd) -- Save any found items to a file: local f = io.open("NewlyUndocumented.lua", "w") f:write(table.concat(res, "\n")) + f:write("\n") f:close() return true, "Newly undocumented items: " .. #res .. "\n" .. table.concat(res, "\n")