From 79432b77bd1a6f5b0b272b555b220ea96c266862 Mon Sep 17 00:00:00 2001 From: "Jakob L. Kreuze" Date: Sat, 27 Apr 2019 13:18:05 -0400 Subject: Fix call to 'makedirs in make-config --- brisket.hy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'brisket.hy') diff --git a/brisket.hy b/brisket.hy index bc983a4..a05ff36 100644 --- a/brisket.hy +++ b/brisket.hy @@ -172,7 +172,7 @@ populated with default configuration values." (let [config (ConfigParser)] (assoc config "Server" {}) (assoc (get config "Server") "Host" "news.eternal-september.org") - (makedirs (dirname *config-path*)) + (makedirs (dirname *config-path*) :exist-ok True) (with [out (open *config-path* "w+")] (.write config out)) config)) -- cgit v1.3