We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d8cb38 commit 42a51efCopy full SHA for 42a51ef
tools/config/__init__.py
@@ -490,8 +490,7 @@ def add_config_files(self, flist):
490
try:
491
cfg = json_file_to_dict(config_file)
492
except ValueError as exc:
493
- sys.stderr.write(str(exc) + "\n")
494
- continue
+ raise ConfigException(str(exc))
495
496
# Validate the format of the JSON file based on the schema_lib.json
497
schema_root = os.path.dirname(os.path.abspath(__file__))
0 commit comments