From 44552937b67ed80812076dffcb1c0d959f0fb453 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 10 Jun 2020 04:29:56 -0500 Subject: [PATCH] Fix missing space in powerwall notification message (#36603) --- homeassistant/components/powerwall/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/powerwall/__init__.py b/homeassistant/components/powerwall/__init__.py index fa9c81533e7..0f25a14546d 100644 --- a/homeassistant/components/powerwall/__init__.py +++ b/homeassistant/components/powerwall/__init__.py @@ -93,7 +93,7 @@ async def _async_handle_api_changed_error(hass: HomeAssistant, error: APIChanged _LOGGER.error(str(error)) hass.components.persistent_notification.async_create( "It seems like your powerwall uses an unsupported version. " - "Please update the software of your powerwall or if it is" + "Please update the software of your powerwall or if it is " "already the newest consider reporting this issue.\nSee logs for more information", title="Unknown powerwall software version", )