From ff8fc6a6709cd70dc6c320882243474f7869e8e2 Mon Sep 17 00:00:00 2001 From: Alex Greenland Date: Tue, 5 Sep 2023 21:46:15 +0100 Subject: [PATCH] Hotfix to remove colour error --- scripts/modules/allsky_overlay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/modules/allsky_overlay.py b/scripts/modules/allsky_overlay.py index cfff986c7..6c2b56196 100644 --- a/scripts/modules/allsky_overlay.py +++ b/scripts/modules/allsky_overlay.py @@ -624,7 +624,7 @@ def _convertColour(self, name, value): try: r,g,b = ImageColor.getcolor(value, "RGB") except: - s.log(0, f"ERROR: The colour '{value}' for field '{name}' is NOT valid - Defaulting to white.") + #s.log(0, f"ERROR: The colour '{value}' for field '{name}' is NOT valid - Defaulting to white.") r = 255 g = 255 b = 255