From a902b55df7e62d9d87d72a47985e59d01e0e9b9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Tue, 26 Oct 2021 00:06:48 +0200 Subject: [PATCH] Remove note in log about removing containers (#3263) Co-authored-by: Paulus Schoutsen --- supervisor/resolution/evaluations/container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/resolution/evaluations/container.py b/supervisor/resolution/evaluations/container.py index 36a5daaac..ac10b9a1a 100644 --- a/supervisor/resolution/evaluations/container.py +++ b/supervisor/resolution/evaluations/container.py @@ -46,7 +46,7 @@ class EvaluateContainer(EvaluateBase): @property def on_failure(self) -> str: """Return a string that is printed when self.evaluate is False.""" - return f"Found images: {self._images} which are not supported, remove these from the host!" + return f"Found unsupported images: {self._images}" @property def states(self) -> list[CoreState]: