From 63e441c73fa06e3b7be13c6143ba2cba262fb46c Mon Sep 17 00:00:00 2001 From: Nolan Gilley Date: Thu, 20 Aug 2015 10:35:01 -0400 Subject: [PATCH] fix scan_devices --- homeassistant/components/device_tracker/actiontec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/device_tracker/actiontec.py b/homeassistant/components/device_tracker/actiontec.py index 35c7868760e..41e209ac506 100644 --- a/homeassistant/components/device_tracker/actiontec.py +++ b/homeassistant/components/device_tracker/actiontec.py @@ -88,7 +88,7 @@ class ActiontecDeviceScanner(object): list containing found device ids. """ self._update_info() - return self.last_results + return [client['mac'] for client in self.last_results] def get_device_name(self, device): """ Returns the name of the given device or None if we don't know. """