From 7a51c828c27ec48d85dfbd3ad11c45a76eaa42b1 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Fri, 4 Dec 2020 15:26:13 +0000 Subject: [PATCH] Fix wrong exception handler --- supervisor/updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/updater.py b/supervisor/updater.py index 985af95fc..ae65c8ea1 100644 --- a/supervisor/updater.py +++ b/supervisor/updater.py @@ -49,7 +49,7 @@ class Updater(JsonConfig, CoreSysAttributes): async def reload(self) -> None: """Update internal data.""" - with suppress(UpdaterJobError): + with suppress(UpdaterError): await self.fetch_data() @property