Removes CRLF in favor of LF when generating links for launch

This commit is contained in:
sloum 2020-05-16 00:02:21 +00:00
parent a05eff2a51
commit f68cf0886b
1 changed files with 1 additions and 1 deletions

View File

@ -471,7 +471,7 @@ func launchFlight(flight string) {
out.Write(header)
for _, capsule := range updatedData {
ln := fmt.Sprintf("=> %s %s - %s\r\n", capsule[1], capsule[3], capsule[0])
ln := fmt.Sprintf("=> %s %s - %s\n", capsule[1], capsule[3], capsule[0])
out.WriteString(ln)
}