From 7a470187ee59ebd79e0ed7f815a4efe8f6f32f7c Mon Sep 17 00:00:00 2001 From: Derek Date: Wed, 18 Oct 2017 10:36:36 -0400 Subject: [PATCH] Changed returned attribute from "Game" to "game" I noticed the steam component "game" attribute is capitalized. This should be lowercase if I'm not mistaken. From: return {'Game': self._game} To: return {'game': self._game} Not sure if i'm doing this correctly... apologizes if I'm not! --- homeassistant/components/sensor/steam_online.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/sensor/steam_online.py b/homeassistant/components/sensor/steam_online.py index 27dd2fad56f16e..8645d4ee7c6642 100644 --- a/homeassistant/components/sensor/steam_online.py +++ b/homeassistant/components/sensor/steam_online.py @@ -96,7 +96,7 @@ def update(self): @property def device_state_attributes(self): """Return the state attributes.""" - return {'Game': self._game} + return {'game': self._game} @property def entity_picture(self):