From 4c38d25e49ae6816a193dd78ad4cfe41a3bdac29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Tue, 26 Apr 2022 14:39:56 +0200 Subject: [PATCH] Remove manage URL for hassio system health info (#70776) --- homeassistant/components/hassio/system_health.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/hassio/system_health.py b/homeassistant/components/hassio/system_health.py index 7fbc0479939..4be94f89218 100644 --- a/homeassistant/components/hassio/system_health.py +++ b/homeassistant/components/hassio/system_health.py @@ -15,7 +15,7 @@ def async_register( hass: HomeAssistant, register: system_health.SystemHealthRegistration ) -> None: """Register system health callbacks.""" - register.async_register_info(system_health_info, "/hassio") + register.async_register_info(system_health_info) async def system_health_info(hass: HomeAssistant):