summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--brisket.hy2
1 files changed, 1 insertions, 1 deletions
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))