From e7e0b9addac6ba94c52d6631f554c6cbef3553ef Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Thu, 19 Jul 2018 01:18:43 +0200 Subject: [PATCH] Fix-python7 compatibility (#573) --- 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 9a8cd26a5..9b9c3373b 100644 --- a/hassio/utils/gdbus.py +++ b/hassio/utils/gdbus.py @@ -247,7 +247,7 @@ class DBusSignalWrapper: self._proc.send_signal(SIGINT) await self._proc.communicate() - async def __aiter__(self): + def __aiter__(self): """Start Iteratation.""" return self