From 4b12ea04d6f10d8205daecf2ec1cd21527c77420 Mon Sep 17 00:00:00 2001 From: John Arild Berentsen Date: Thu, 1 Sep 2016 07:13:33 +0200 Subject: [PATCH] humidity slider (#3088) --- homeassistant/components/climate/ecobee.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/climate/ecobee.py b/homeassistant/components/climate/ecobee.py index da4b29dfe92..2417a8562ce 100644 --- a/homeassistant/components/climate/ecobee.py +++ b/homeassistant/components/climate/ecobee.py @@ -181,7 +181,7 @@ class Thermostat(ClimateDevice): else: operation = status return { - "humidity": self.thermostat['runtime']['actualHumidity'], + "actual_humidity": self.thermostat['runtime']['actualHumidity'], "fan": self.fan, "mode": self.mode, "operation": operation,