aboutsummaryrefslogtreecommitdiff
path: root/src/ee/project
diff options
context:
space:
mode:
Diffstat (limited to 'src/ee/project')
-rw-r--r--src/ee/project/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ee/project/__init__.py b/src/ee/project/__init__.py
index 1adbbde..24635ee 100644
--- a/src/ee/project/__init__.py
+++ b/src/ee/project/__init__.py
@@ -54,7 +54,7 @@ class Project(object):
return Project(project_dir, cfg)
def save(self):
- path = self.project_dir / ".ee" / "config"
+ path = self.project_dir / "eeconfig"
mk_parents(path)
- with (path).open("w") as f:
+ with path.open("w") as f:
self._cfg.write(f)