Skip to content

Commit

Permalink
Can't do this here because we are still loading! Do it after...
Browse files Browse the repository at this point in the history
  • Loading branch information
rowleya committed Jul 29, 2024
1 parent 416f8cb commit 27e94d0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions spinn_utilities/config_holder.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,13 @@ def load_config() -> CamelCaseConfigParser:
raise ConfigException("No default configs set")
if __config_file:
__config = conf_loader.load_config(
filename=__config_file, defaults=__default_config_files,
config_parsers=[("Logging", logging_parser)])
filename=__config_file, defaults=__default_config_files)
else:
__config = CamelCaseConfigParser()
for default in __default_config_files:
__config.read(default)

logging_parser(__config)
return __config


Expand Down

0 comments on commit 27e94d0

Please sign in to comment.