From a84dc14569dcfaa2fe48a60d96a3cf109ef7cffd Mon Sep 17 00:00:00 2001 From: David Bonnes Date: Mon, 2 Nov 2020 13:53:22 +0000 Subject: [PATCH] Provide a more useful error message in evohome (#42734) --- homeassistant/components/evohome/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/evohome/__init__.py b/homeassistant/components/evohome/__init__.py index f429f5bd2f1..874edfcd781 100644 --- a/homeassistant/components/evohome/__init__.py +++ b/homeassistant/components/evohome/__init__.py @@ -140,8 +140,8 @@ def _handle_exception(err) -> bool: except evohomeasync2.AuthenticationError: _LOGGER.error( "Failed to authenticate with the vendor's server. " - "Check your network and the vendor's service status page. " - "Also check that your username and password are correct. " + "Check your username and password. NB: Some special password characters " + "that work correctly via the website will not work via the web API. " "Message is: %s", err, )