From d2623bf5749e06b0019d50779fbc36f4ec65761e Mon Sep 17 00:00:00 2001 From: Austin Drummond Date: Mon, 31 May 2021 13:59:55 -0400 Subject: [PATCH] AppleTV typo in error notification (#51300) An extraneous "f" was prefix at the beginning of the notification. >An irrecoverable connection problem occurred when connecting to fApple TV. Please go to the Integrations page and reconfigure it. --- homeassistant/components/apple_tv/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/apple_tv/__init__.py b/homeassistant/components/apple_tv/__init__.py index a1bd50ab221..e8b900d8213 100644 --- a/homeassistant/components/apple_tv/__init__.py +++ b/homeassistant/components/apple_tv/__init__.py @@ -270,7 +270,7 @@ class AppleTVManager: self.hass.components.persistent_notification.create( "An irrecoverable connection problem occurred when connecting to " - f"`f{name}`. Please go to the Integrations page and reconfigure it", + f"`{name}`. Please go to the Integrations page and reconfigure it", title=NOTIFICATION_TITLE, notification_id=NOTIFICATION_ID, )