From f3aa3757ce1b672ec0c6bb1d74d35bbfdc8b8c00 Mon Sep 17 00:00:00 2001 From: Philip Allgaier Date: Mon, 1 Mar 2021 09:44:16 +0100 Subject: [PATCH] Fixed typos in resolution notify (#2646) --- supervisor/resolution/notify.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/supervisor/resolution/notify.py b/supervisor/resolution/notify.py index 9517bd725..30113fc36 100644 --- a/supervisor/resolution/notify.py +++ b/supervisor/resolution/notify.py @@ -55,8 +55,8 @@ class ResolutionNotify(CoreSysAttributes): if issue.type == IssueType.PWNED and issue.context == ContextType.ADDON: messages.append( { - "title": f"Insecure Secrets on {issue.reference}", - "message": f"The Add-on {issue.reference} uses secrets which are detected as not secure, see see https://www.home-assistant.io/more-info/pwned-passwords for more information.", + "title": f"Insecure secrets in {issue.reference}", + "message": f"The add-on {issue.reference} uses secrets which are detected as not secure, see https://www.home-assistant.io/more-info/pwned-passwords for more information.", "notification_id": f"supervisor_issue_pwned_{issue.reference}", } ) @@ -69,7 +69,7 @@ class ResolutionNotify(CoreSysAttributes): json=message, ) as resp: if resp.status in (200, 201): - _LOGGER.debug("Sucessfully created persistent_notification") + _LOGGER.debug("Successfully created persistent_notification") else: _LOGGER.error("Can't create persistant notification") except HomeAssistantAPIError: