From dc77e2d8d98606b606eea4106ce2d231cd40efbc Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Thu, 3 May 2018 00:52:57 +0200 Subject: [PATCH] Update gdbus.py --- hassio/utils/gdbus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hassio/utils/gdbus.py b/hassio/utils/gdbus.py index 8673ebe9d..5071072fe 100644 --- a/hassio/utils/gdbus.py +++ b/hassio/utils/gdbus.py @@ -41,7 +41,7 @@ class DBus: async def connect(bus_name, object_path): """Read object data.""" self = DBus(bus_name, object_path) - self._init_proxy() # pylint: disable=protected-access + await self._init_proxy() # pylint: disable=protected-access _LOGGER.info("Connect to dbus: %s - %s", bus_name, object_path) return self