Merge branch 'config-check' into 'master'

Catch the right error when the constraint type name is not set

See merge request !2
This commit is contained in:
Lucas Verney 2017-06-14 10:28:33 +02:00
commit 577abafa07
1 changed files with 1 additions and 0 deletions

View File

@ -95,6 +95,7 @@ def validate_config(config):
# message in the log output.
# pylint: disable=locally-disabled,line-too-long
assert "type" in config["constraints"]
assert isinstance(config["constraints"]["type"], (str, unicode))
assert config["constraints"]["type"].upper() in ["RENT",
"SALE", "SHARING"]