From a0a1fd4875077c67bb5d36c199b744dbf363e580 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Tue, 11 Jul 2017 23:29:38 +0200 Subject: [PATCH] fix coro --- hassio/homeassistant.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hassio/homeassistant.py b/hassio/homeassistant.py index 0e00542bb..9c94c4184 100644 --- a/hassio/homeassistant.py +++ b/hassio/homeassistant.py @@ -90,7 +90,7 @@ class HomeAssistant(JsonConfig): """Install a landingpage.""" _LOGGER.info("Setup HomeAssistant landingpage") while True: - if self.docker.install('landingpage'): + if await self.docker.install('landingpage'): break _LOGGER.warning("Fails install landingpage, retry after 60sec") await asyncio.sleep(60, loop=self.loop)