From 5275ca9ce75af94c76ae4575c6cc71b75f473e79 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 14 Nov 2015 15:25:52 +0100 Subject: [PATCH] Fix typo --- homeassistant/components/sensor/glances.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/sensor/glances.py b/homeassistant/components/sensor/glances.py index d651b477932..176081336df 100644 --- a/homeassistant/components/sensor/glances.py +++ b/homeassistant/components/sensor/glances.py @@ -155,7 +155,7 @@ class GlancesData(object): @Throttle(MIN_TIME_BETWEEN_UPDATES) def update(self): - """ Gets the latest data from teh Glances REST API. """ + """ Gets the latest data from the Glances REST API. """ try: response = requests.get(self._resource, timeout=10) self.data = response.json()