Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a warning that honeywell/EU is to be deprecated #23469

Merged
merged 2 commits into from Apr 27, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions homeassistant/components/honeywell/climate.py
Expand Up @@ -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 a future version of HA.")
zxdavb marked this conversation as resolved.
Show resolved Hide resolved
_LOGGER.warning(
"Please switch to the evohome componenent, "
"see: https://home-assistant.io/components/evohome")

return _setup_round(username, password, config, add_entities)


Expand Down