Skip to content

Fix ftpadmin chocking on files without a newline at the end

readlines() expects a newline at the end of every line, which is sometimes not the case with the last line in files. There is no need to have seperate lines as a list, so we can just use read().

Merge request reports