Skip to content

Commit bff70fa

Browse files
committed
Fix bblocks-config-local filename
1 parent d42a292 commit bff70fa

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ogc/bblocks/entrypoint.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,8 @@
202202
register_additional_metadata['sparqlEndpoint'] = sparql_conf['query']
203203

204204
bb_local_config_file = Path('bblocks-config-local.yml')
205+
if not bb_local_config_file.is_file():
206+
bb_local_config_file = Path('bblocks-config-local.yaml')
205207
import_local_mappings = None
206208
if bb_local_config_file.is_file():
207209
bb_local_config = load_yaml(filename=bb_local_config_file)

0 commit comments

Comments
 (0)