From 8f1763abe2f61dfacc61b250285f8074675bbd93 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sun, 24 Jan 2021 16:46:49 +0100 Subject: [PATCH] Fix OSError with custom component check (#2458) --- supervisor/resolution/checks/core_security.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/resolution/checks/core_security.py b/supervisor/resolution/checks/core_security.py index f821110ef..82a680b5d 100644 --- a/supervisor/resolution/checks/core_security.py +++ b/supervisor/resolution/checks/core_security.py @@ -32,7 +32,7 @@ class CheckCoreSecurity(CheckBase): reference=SecurityReference.CUSTOM_COMPONENTS_BELOW_2021_1_5, suggestions=[SuggestionType.EXECUTE_UPDATE], ) - except AwesomeVersionException: + except (AwesomeVersionException, OSError): return async def approve_check(self) -> bool: