Merge branch 'master' into 29-generic-entities-support

This commit is contained in:
Fabio Manganiello 2022-10-14 20:57:13 +02:00
commit 5995d045e1
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 2 additions and 0 deletions

View File

@ -201,6 +201,8 @@ class Config:
)
for include_file in include_files:
if not include_file:
continue
if not os.path.isabs(include_file):
include_file = os.path.join(cfgfile_dir, include_file)
self._included_files.add(include_file)