From 10317a0f71ffde47c4005ce8830b76e6bed4c989 Mon Sep 17 00:00:00 2001 From: Steve Edson Date: Thu, 7 Jun 2018 21:57:07 +0100 Subject: [PATCH] Rename Hive hub friendly name (#14747) Right now, "Hub Status" is very generic, I didn't know what component it was coming from, and the only way to tell was searching the source code to find the reference. --- homeassistant/components/sensor/hive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/sensor/hive.py b/homeassistant/components/sensor/hive.py index 82816c83404..8c9409ef5ff 100644 --- a/homeassistant/components/sensor/hive.py +++ b/homeassistant/components/sensor/hive.py @@ -10,7 +10,7 @@ from homeassistant.helpers.entity import Entity DEPENDENCIES = ['hive'] -FRIENDLY_NAMES = {'Hub_OnlineStatus': 'Hub Status', +FRIENDLY_NAMES = {'Hub_OnlineStatus': 'Hive Hub Status', 'Hive_OutsideTemperature': 'Outside Temperature'} DEVICETYPE_ICONS = {'Hub_OnlineStatus': 'mdi:switch', 'Hive_OutsideTemperature': 'mdi:thermometer'}