From 2306d14b5dd4d5f115c8e4b7ac233287edb66c7f Mon Sep 17 00:00:00 2001 From: Jason Hu Date: Tue, 14 Aug 2018 23:09:19 -0700 Subject: [PATCH] Teak mqtt error message for 0.76 release (#15983) --- homeassistant/components/mqtt/__init__.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/homeassistant/components/mqtt/__init__.py b/homeassistant/components/mqtt/__init__.py index 70d4d7aa5d7..19bacbc8d4c 100644 --- a/homeassistant/components/mqtt/__init__.py +++ b/homeassistant/components/mqtt/__init__.py @@ -354,11 +354,11 @@ async def async_setup(hass: HomeAssistantType, config: ConfigType) -> bool: if (conf.get(CONF_PASSWORD) is None and config.get('http') is not None and config['http'].get('api_password') is not None): - _LOGGER.error("Starting from 0.77, embedded MQTT broker doesn't" - " use api_password as default password any more." - " Please set password configuration. See https://" - "home-assistant.io/docs/mqtt/broker#embedded-broker" - " for details") + _LOGGER.error( + "Starting from release 0.76, the embedded MQTT broker does not" + " use api_password as default password anymore. Please set" + " password configuration. See https://home-assistant.io/docs/" + "mqtt/broker#embedded-broker for details") return False broker_config = await _async_setup_server(hass, config)