From a287f52e47d84358d5a6fcd6bbe8be06ab768775 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Thu, 27 Apr 2017 23:43:18 +0200 Subject: [PATCH] fix spell --- hassio/addons/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hassio/addons/__init__.py b/hassio/addons/__init__.py index 6444a7ae5..67a963ef4 100644 --- a/hassio/addons/__init__.py +++ b/hassio/addons/__init__.py @@ -97,7 +97,7 @@ class AddonManager(AddonsData): async def auto_boot(self, start_type): """Boot addons with mode auto.""" boot_list = self.list_startup(start_type) - tasks = [self.start(addon) from addon in boot_list] + tasks = [self.start(addon) for addon in boot_list] _LOGGER.info("Startup %s run %d addons", start_type, len(tasks)) if tasks: