From 7458f1f6efda6614fcf110300d26591076143951 Mon Sep 17 00:00:00 2001 From: David Bonnes Date: Sat, 27 Apr 2019 21:27:41 +0100 Subject: [PATCH] Add a warning that honeywell/EU is to be deprecated (#23469) * Add a warning that honeywell/EU is to be deprecated * improve warning --- homeassistant/components/honeywell/climate.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/homeassistant/components/honeywell/climate.py b/homeassistant/components/honeywell/climate.py index df19f67a876..5a07b094e24 100644 --- a/homeassistant/components/honeywell/climate.py +++ b/homeassistant/components/honeywell/climate.py @@ -53,6 +53,13 @@ def setup_platform(hass, config, add_entities, discovery_info=None): if region == 'us': return _setup_us(username, password, config, add_entities) + _LOGGER.warning( + "The honeywell component is deprecated for EU (i.e. non-US) systems, " + "this functionality will be removed in version 0.96.") + _LOGGER.warning( + "Please switch to the evohome component, " + "see: https://home-assistant.io/components/evohome") + return _setup_round(username, password, config, add_entities)