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

This commit is contained in:
Benjamin Bouvier 2017-06-13 16:02:31 +02:00
parent 2d30061b7b
commit 8c126ef8e3
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"]