Merge pull request #2038 from home-assistant/hotfix-19-4

Hotfix 0.19.4: Fix script syntax validation of AND and OR condition
This commit is contained in:
Paulus Schoutsen 2016-05-10 21:57:22 -07:00
commit fd8240241f
2 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# coding: utf-8
"""Constants used by Home Assistant components."""
__version__ = "0.19.3"
__version__ = "0.19.4"
REQUIRED_PYTHON_VER = (3, 4)
PLATFORM_FORMAT = '{}.{}'

View File

@ -369,6 +369,8 @@ CONDITION_SCHEMA = vol.Any(
TEMPLATE_CONDITION_SCHEMA,
TIME_CONDITION_SCHEMA,
ZONE_CONDITION_SCHEMA,
AND_CONDITION_SCHEMA,
OR_CONDITION_SCHEMA,
)
_SCRIPT_DELAY_SCHEMA = vol.Schema({