From e00a469828ea38d36590387487c3357fd440b611 Mon Sep 17 00:00:00 2001 From: Robbie Trencheny Date: Fri, 23 Sep 2016 17:13:12 -0700 Subject: [PATCH] Fix all_covers group friendly_name It now matches other components (`all covers` instead of `all_covers`). --- homeassistant/components/cover/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/cover/__init__.py b/homeassistant/components/cover/__init__.py index 876a8b46cfa..2398ac1333f 100644 --- a/homeassistant/components/cover/__init__.py +++ b/homeassistant/components/cover/__init__.py @@ -25,7 +25,7 @@ from homeassistant.const import ( DOMAIN = 'cover' SCAN_INTERVAL = 15 -GROUP_NAME_ALL_COVERS = 'all_covers' +GROUP_NAME_ALL_COVERS = 'all covers' ENTITY_ID_ALL_COVERS = group.ENTITY_ID_FORMAT.format( GROUP_NAME_ALL_COVERS)