Merge pull request #2334 from home-assistant/hotfix-22-1

Hotfix 0.22.1
This commit is contained in:
Paulus Schoutsen 2016-06-19 21:16:22 -07:00 committed by GitHub
commit 4f09279524
2 changed files with 2 additions and 3 deletions

View File

@ -39,7 +39,6 @@ def setup(hass, config):
_LOGGER.error("Could not connect to Insteon service.")
return
for component in 'light':
discovery.load_platform(hass, component, DOMAIN, {}, config)
discovery.load_platform(hass, 'light', DOMAIN, {}, config)
return True

View File

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