fixed a weird bug where a trailing newline would make itself into an item

main
m455 2018-04-13 02:35:59 -04:00
parent 76673f528d
commit 5b7338e4fa
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@
args))
todo-list)])
(display-to-file
(string-append (string-join new-list "\n") "\n")
(string-join new-list "\n")
path
#:mode 'text
#:exists 'replace))))