From 1e1d593ef7a50cfc9f40b3fd0550347a721eee48 Mon Sep 17 00:00:00 2001 From: Derek Date: Wed, 18 Oct 2017 12:27:02 -0400 Subject: [PATCH] Changed returned attribute from "Game" to "game" (#9945) 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 27dd2fad56f..8645d4ee7c6 100644 --- a/homeassistant/components/sensor/steam_online.py +++ b/homeassistant/components/sensor/steam_online.py @@ -96,7 +96,7 @@ class SteamSensor(Entity): @property def device_state_attributes(self): """Return the state attributes.""" - return {'Game': self._game} + return {'game': self._game} @property def entity_picture(self):