From fd185fc326ab573858df3cd6e6dc6d7d9ccb8f66 Mon Sep 17 00:00:00 2001 From: Sergio Oller Date: Wed, 2 Jun 2021 11:50:07 +0200 Subject: [PATCH] Minor spelling fixes (#2929) --- supervisor/hassos.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/supervisor/hassos.py b/supervisor/hassos.py index 756f052f6..b29fe9990 100644 --- a/supervisor/hassos.py +++ b/supervisor/hassos.py @@ -77,7 +77,7 @@ class HassOS(CoreSysAttributes): async with self.sys_websession.get(url, timeout=timeout) as request: if request.status != 200: raise HassOSUpdateError( - f"Error raise form OTA Webserver: {request.status}", + f"Error raised from OTA Webserver: {request.status}", _LOGGER.error, ) @@ -198,6 +198,6 @@ class HassOS(CoreSysAttributes): try: response = await self.sys_dbus.rauc.mark(RaucState.GOOD, "booted") except DBusError: - _LOGGER.error("Can't mark booted partition as healty!") + _LOGGER.error("Can't mark booted partition as healthy!") else: _LOGGER.info("Rauc: %s - %s", self.sys_dbus.rauc.boot_slot, response[1])