diff --git a/supervisor/docker/interface.py b/supervisor/docker/interface.py index ee86dd772..7b87742e7 100644 --- a/supervisor/docker/interface.py +++ b/supervisor/docker/interface.py @@ -339,7 +339,7 @@ class DockerInterface(CoreSysAttributes): try: images_list = self.sys_docker.images.list(name=self.image) except (docker.errors.DockerException, requests.RequestException) as err: - _LOGGER.waring("Corrupt docker overlayfs found: %s", err) + _LOGGER.warning("Corrupt docker overlayfs found: %s", err) raise DockerError() from err for image in images_list: @@ -357,7 +357,7 @@ class DockerInterface(CoreSysAttributes): try: images_list = self.sys_docker.images.list(name=old_image) except (docker.errors.DockerException, requests.RequestException) as err: - _LOGGER.waring("Corrupt docker overlayfs found: %s", err) + _LOGGER.warning("Corrupt docker overlayfs found: %s", err) raise DockerError() from err for image in images_list: diff --git a/supervisor/host/__init__.py b/supervisor/host/__init__.py index 933ef6b63..d49b6a9c0 100644 --- a/supervisor/host/__init__.py +++ b/supervisor/host/__init__.py @@ -103,4 +103,4 @@ class HostManager(CoreSysAttributes): try: await self.apparmor.load() except HassioError as err: - _LOGGER.waring("Load host AppArmor on start failed: %s", err) + _LOGGER.warning("Load host AppArmor on start failed: %s", err)