Skip to content

Commit

Permalink
Update scripts/plugins/config/parser.py to exit with 101
Browse files Browse the repository at this point in the history
  • Loading branch information
arm4b authored Apr 4, 2023
1 parent 446569c commit 92ffbd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/plugins/config/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def get_config_list(config_file, schema_file):
f"Required config file was not found. \
To fix this please add the following file: [{e.filename}]"
)
sys.exit(2)
sys.exit(101)
schema = convert_yaml_to_dict(schema_yaml)
schema_properties_list = generate_schema_keys(schema)
schema_list = generate_populated_schema_list(schema, schema_properties_list, config_yaml)
Expand Down

0 comments on commit 92ffbd1

Please sign in to comment.