From 87592ff86000bc42e241086adca08d1308277184 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Mon, 30 Sep 2013 18:59:43 -0700 Subject: [PATCH] Renaming categories for tracked devices. --- homeassistant/observers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/observers.py b/homeassistant/observers.py index 89b0e7fe6b0..59fb464eed6 100644 --- a/homeassistant/observers.py +++ b/homeassistant/observers.py @@ -21,8 +21,8 @@ import ephem from . import track_time_change STATE_CATEGORY_SUN = "weather.sun" -STATE_CATEGORY_ALL_DEVICES = 'device.alldevices' -STATE_CATEGORY_DEVICE_FORMAT = 'device.{}' +STATE_CATEGORY_ALL_DEVICES = 'all_devices' +STATE_CATEGORY_DEVICE_FORMAT = '{}' SUN_STATE_ABOVE_HORIZON = "above_horizon" SUN_STATE_BELOW_HORIZON = "below_horizon"