From aa7b68d4d5da14a1f51c0c42be324a7771b766b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Mon, 26 Oct 2020 21:14:42 +0100 Subject: [PATCH] Fix missing await (#2177) * Fix missing await * One more --- supervisor/store/git.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/supervisor/store/git.py b/supervisor/store/git.py index d16c8dd21..ca184678a 100644 --- a/supervisor/store/git.py +++ b/supervisor/store/git.py @@ -53,7 +53,7 @@ class GitRepo(CoreSysAttributes): git.GitCommandError, ) as err: _LOGGER.error("Can't load %s repo: %s.", self.path, err) - self._remove() + await self._remove() return False return True @@ -86,7 +86,7 @@ class GitRepo(CoreSysAttributes): git.GitCommandError, ) as err: _LOGGER.error("Can't clone %s repository: %s.", self.url, err) - self._remove() + await self._remove() return False return True