From 673290d2e1499be69a0c04c93ecc608f71e3b2e5 Mon Sep 17 00:00:00 2001 From: Emilv2 Date: Sun, 2 Jun 2019 04:08:23 +0800 Subject: [PATCH] fix gitlab_ci sad icon (#24241) --- homeassistant/components/gitlab_ci/sensor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/gitlab_ci/sensor.py b/homeassistant/components/gitlab_ci/sensor.py index 54cbf34fdfc..1d59a5e4f21 100644 --- a/homeassistant/components/gitlab_ci/sensor.py +++ b/homeassistant/components/gitlab_ci/sensor.py @@ -30,7 +30,7 @@ DEFAULT_URL = 'https://gitlab.com' ICON_HAPPY = 'mdi:emoticon-happy' ICON_OTHER = 'mdi:git' -ICON_SAD = 'mdi:emoticon-happy' +ICON_SAD = 'mdi:emoticon-sad' SCAN_INTERVAL = timedelta(seconds=300)