From 3cda1aacff01a93aa130ced2f173921e064921a5 Mon Sep 17 00:00:00 2001 From: Ryan Kraus Date: Sun, 15 Nov 2015 17:34:06 -0500 Subject: [PATCH] Fixed typo in updater entity attributes. Left some quotes in there. My bad. --- homeassistant/components/updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/updater.py b/homeassistant/components/updater.py index 817c9507499..c0c95b57236 100644 --- a/homeassistant/components/updater.py +++ b/homeassistant/components/updater.py @@ -30,7 +30,7 @@ def setup(hass, config): if newest != CURRENT_VERSION and newest is not None: hass.states.set( - ENTITY_ID, newest, {'ATTR_FRIENDLY_NAME': 'Update Available'}) + ENTITY_ID, newest, {ATTR_FRIENDLY_NAME: 'Update Available'}) event.track_time_change(hass, check_newest_version, hour=[0, 12], minute=0, second=0)