# HG changeset patch # User Ludovic Chabant # Date 1672447772 28800 # Node ID 09d5c233e840f8404cc41c455a6dba7546372c2c # Parent 032920568ba72f8a4f1d8af2c193cf4c4aa7b6a9 sources: Fix bug checking config setting. diff -r 032920568ba7 -r 09d5c233e840 piecrust/sources/posts.py --- a/piecrust/sources/posts.py Fri Dec 30 16:49:04 2022 -0800 +++ b/piecrust/sources/posts.py Fri Dec 30 16:49:32 2022 -0800 @@ -221,7 +221,7 @@ def _checkFsEndpointPath(self): if not os.path.isdir(self.fs_endpoint_path): - if self.ignore_missing_dir: + if self.config.get('ignore_missing_dir'): return False raise InvalidFileSystemEndpointError(self.name, self.fs_endpoint_path)