Correct typo in log message (#2156)

* Correct typo in log message

* More typos
This commit is contained in:
Joakim Sørensen 2020-10-20 20:30:20 +02:00 committed by GitHub
parent 45861617b9
commit 1a59839b1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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