Skip to content
Snippets Groups Projects
Commit b4bf8f16 authored by Gaëlle USSEGLIO's avatar Gaëlle USSEGLIO
Browse files

BUG : Correction on metaschema in json_schemas

parent a736899f
No related branches found
No related tags found
3 merge requests!52Merge for v1.1.0,!50Finalize Python chains (v1.1.0),!49Add python tests
......@@ -270,8 +270,8 @@ class ConfigFile():
with open(schema_file, "r") as sch:
data_schema = json.load(sch)
except Exception as err:
logger.critical("Impossible to read or load JSON configuration schema : {err}. Check its path and content."\
.format(err=self._config_file))
logger.critical("Impossible to read or load JSON configuration schema : {name}. Check its path and content, exception is {err}"\
.format(name=self._config_file, err=err))
quit()
# Check Json file
......
{
"$schema": "http://json-schema.org/draft-07/schema#"
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "JSON SCHEMA for MultiSlc",
"description": "JSON organization for the script SAR_MultiSlc.py",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment