From 01430262cd965405f2a063d2f3c227e20eaa73dc Mon Sep 17 00:00:00 2001 From: Matthias Alphart Date: Sun, 21 Jul 2019 02:57:38 +0200 Subject: [PATCH] temporary patch to fix KNX climate devices (#25356) This is a temporary patch for knx climate devices. It should be reverted when #24738 is merged to release. It should fix https://github.com/home-assistant/home-assistant/issues/25247 for 0.96 --- homeassistant/components/knx/climate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/knx/climate.py b/homeassistant/components/knx/climate.py index 4b5998016e1..d9b7ba58ab2 100644 --- a/homeassistant/components/knx/climate.py +++ b/homeassistant/components/knx/climate.py @@ -219,7 +219,7 @@ class KNXClimate(ClimateDevice): @property def target_temperature_step(self): """Return the supported step of target temperature.""" - return self.device.temperature_step + return self.device.setpoint_shift_step @property def target_temperature(self):