From 8baf59a60834b95dc2ab626cc9a2f6e9f682e382 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sat, 24 Mar 2018 22:06:56 +0100 Subject: [PATCH] fix lint --- hassio/updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hassio/updater.py b/hassio/updater.py index d879e0482..ea65a0503 100644 --- a/hassio/updater.py +++ b/hassio/updater.py @@ -65,7 +65,7 @@ class Updater(JsonConfig, CoreSysAttributes): Is a coroutine. """ - url = URL_HASSIO_VERSION.format(CHANNEL_TO_BRANCH[self.mode]) + url = URL_HASSIO_VERSION.format(CHANNEL_TO_BRANCH[self.channel]) try: _LOGGER.info("Fetch update data from %s", url) with async_timeout.timeout(10, loop=self._loop):