Merge pull request #2704 from home-assistant/hotfix-0-25-2

Hotfix 0 25 2
pull/2752/head 0.25.2
Paulus Schoutsen 2016-08-01 20:58:27 -07:00 committed by GitHub
commit f50c30bbba
2 changed files with 2 additions and 3 deletions

View File

@ -46,8 +46,7 @@ class ZwaveLock(zwave.ZWaveDeviceEntity, LockDevice):
def _value_changed(self, value):
"""Called when a value has changed on the network."""
if self._value.value_id == value.value_id or \
self._value.node == value.node:
if self._value.value_id == value.value_id:
self._state = value.data
self.update_ha_state()

View File

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