From 2574b915dd16acb7e02920ee403bbb81d2bc5e93 Mon Sep 17 00:00:00 2001
From: Pascal Vizeli <pascal.vizeli@syshack.ch>
Date: Thu, 16 Feb 2017 10:30:12 +0100
Subject: [PATCH] Fix name in logging message (#6039)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Add an optional extended description…
---
 homeassistant/components/sensor/ebox.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/homeassistant/components/sensor/ebox.py b/homeassistant/components/sensor/ebox.py
index bab476068bc..8357e9ad8f9 100644
--- a/homeassistant/components/sensor/ebox.py
+++ b/homeassistant/components/sensor/ebox.py
@@ -150,7 +150,7 @@ class EBoxData(object):
         try:
             self.client.fetch_data()
         except PyEboxError as exp:
-            _LOGGER.error("Error on receive last Fido data: %s", exp)
+            _LOGGER.error("Error on receive last EBox data: %s", exp)
             return
         # Update data
         self.data = self.client.get_data()
-- 
GitLab