From dce079e7113ad26a69cdd848f29868af5deab3c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=85skar=20Andersson?= Date: Tue, 16 Jan 2018 10:59:20 +0100 Subject: [PATCH] fixed not to include spaces or dots in attribute names (#11694) mold_indicator should be fixed not to include spaces or dots in attribute names https://community.home-assistant.io/t/how-to-show-sensor-attribute-est-crit-temp-in-customize-template-and-extra-badge/39451 --- homeassistant/components/sensor/mold_indicator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/sensor/mold_indicator.py b/homeassistant/components/sensor/mold_indicator.py index ccebd93dbec..2d233ec8c70 100644 --- a/homeassistant/components/sensor/mold_indicator.py +++ b/homeassistant/components/sensor/mold_indicator.py @@ -19,7 +19,7 @@ import homeassistant.helpers.config_validation as cv _LOGGER = logging.getLogger(__name__) -ATTR_CRITICAL_TEMP = 'Est. Crit. Temp' +ATTR_CRITICAL_TEMP = 'EstimatedCriticalTemp' ATTR_DEWPOINT = 'Dewpoint' CONF_CALIBRATION_FACTOR = 'calibration_factor'