diff --git a/homeassistant/components/light/hue.py b/homeassistant/components/light/hue.py index a970a8681c9..a183d1b533b 100644 --- a/homeassistant/components/light/hue.py +++ b/homeassistant/components/light/hue.py @@ -194,7 +194,7 @@ class HueLight(Light): @property def brightness(self): """ Brightness of this light between 0..255. """ - return self.info['state']['bri'] + return self.info['state'].get('bri') @property def xy_color(self):