mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-07-19 15:16:33 +00:00
Correct typo in log message (#2156)
* Correct typo in log message * More typos
This commit is contained in:
parent
45861617b9
commit
1a59839b1b
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user