diff --git a/supervisor/docker/interface.py b/supervisor/docker/interface.py index aaf478584..5d06645d4 100644 --- a/supervisor/docker/interface.py +++ b/supervisor/docker/interface.py @@ -269,7 +269,7 @@ class DockerInterface(CoreSysAttributes): with suppress(DockerError): self._stop() - _LOGGER.info("Removeing image %s with latest and %s", self.image, self.version) + _LOGGER.info("Removing image %s with latest and %s", self.image, self.version) try: with suppress(docker.errors.ImageNotFound): @@ -303,7 +303,7 @@ class DockerInterface(CoreSysAttributes): image = image or self.image _LOGGER.info( - "Updateing image %s:%s to %s:%s", self.image, self.version, image, tag + "Updating image %s:%s to %s:%s", self.image, self.version, image, tag ) # Update docker image diff --git a/supervisor/plugins/dns.py b/supervisor/plugins/dns.py index 77636e39f..31baacc78 100644 --- a/supervisor/plugins/dns.py +++ b/supervisor/plugins/dns.py @@ -362,7 +362,7 @@ class CoreDNS(JsonConfig, CoreSysAttributes): _LOGGER.debug("Can't remove Host entry: %s", host) return - _LOGGER.debug("Removeing host entry %s - %s", entry.ip_address, entry.names) + _LOGGER.debug("Removing host entry %s - %s", entry.ip_address, entry.names) self._hosts.remove(entry) # Update hosts file diff --git a/supervisor/store/git.py b/supervisor/store/git.py index e39fbbe3f..d16c8dd21 100644 --- a/supervisor/store/git.py +++ b/supervisor/store/git.py @@ -73,7 +73,7 @@ class GitRepo(CoreSysAttributes): } try: - _LOGGER.info("Cloneing add-on %s repository", self.url) + _LOGGER.info("Cloning add-on %s repository", self.url) self.repo = await self.sys_run_in_executor( ft.partial( git.Repo.clone_from, self.url, str(self.path), **git_args