diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.lonestar.org> | 2019-04-27 13:18:05 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.lonestar.org> | 2019-04-27 13:18:05 -0400 |
| commit | 79432b77bd1a6f5b0b272b555b220ea96c266862 (patch) | |
| tree | 8cd2c1aa185335fa11be0d5a46af1104bb215822 /brisket.hy | |
| parent | e653e1385d19520f34e56bc2f5d585524f371270 (diff) | |
Fix call to 'makedirs in make-config
Diffstat (limited to 'brisket.hy')
| -rw-r--r-- | brisket.hy | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)) |