Browse Source

Fixed config script.

tags/v0.3
Ben Kurtovic 8 years ago
parent
commit
17a8a53bbb
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      earwigbot/config/script.py

+ 4
- 0
earwigbot/config/script.py View File

@@ -442,6 +442,10 @@ class ConfigScript(object):
"""Make a new config file based on the user's input."""
try:
makedirs(path.dirname(self.config.path))
except OSError as exc:
if exc.errno != 17:
raise
try:
open(self.config.path, "w").close()
chmod(self.config.path, stat.S_IRUSR|stat.S_IWUSR)
except IOError:


Loading…
Cancel
Save