From aa9673b208506e8df4fa5e47e13d7d6b3b8f2107 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 13 Jan 2015 08:25:17 -0800 Subject: [PATCH] Device Tracker sets up group auto attribute proper --- homeassistant/components/device_tracker/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/device_tracker/__init__.py b/homeassistant/components/device_tracker/__init__.py index 3da9054be8d..04cea3e047b 100644 --- a/homeassistant/components/device_tracker/__init__.py +++ b/homeassistant/components/device_tracker/__init__.py @@ -111,7 +111,8 @@ class DeviceTracker(object): """ Triggers update of the device states. """ self.update_devices(now) - dev_group = group.Group(hass, GROUP_NAME_ALL_DEVICES) + dev_group = group.Group( + hass, GROUP_NAME_ALL_DEVICES, user_defined=False) # pylint: disable=unused-argument def reload_known_devices_service(service):