From 5b7338e4fa23eff37722978f80b163111d936920 Mon Sep 17 00:00:00 2001 From: m455 Date: Fri, 13 Apr 2018 02:35:59 -0400 Subject: [PATCH] fixed a weird bug where a trailing newline would make itself into an item --- util.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.rkt b/util.rkt index 7dcf0d3..98af345 100644 --- a/util.rkt +++ b/util.rkt @@ -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))))