Skip to content

Commit 94db874

Browse files
Fix: correct config writer syntax
1 parent 48c8abc commit 94db874

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

racket/taskly/config.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
(for ([key (in-list '("last-db-path" "language" "last-selected-list-id"))])
5959
(define value (config-ref config key #f))
6060
(when value
61-
(fprintf out "~a = ~a\n" key value)))))))
61+
(fprintf out "~a = ~a\n" key value))))))
6262

6363
(define (resolve-database-path [override #f] [config (read-config)])
6464
(cond

0 commit comments

Comments
 (0)