diff --git a/src/confthing/__init__.py b/src/confthing/__init__.py index a3c9248..9953f19 100644 --- a/src/confthing/__init__.py +++ b/src/confthing/__init__.py @@ -25,7 +25,7 @@ class Config: try: self.get(d, strict = True) except PathNotFoundError: - self.set(d, defaults[d]) + self.set(d, defaults[d], clobber = True) def split_path(self, path): return path.split(self.delimiter)