From 04372d1f2b0d9d57a9a9c99fe45e5885b46e7fcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Wed, 14 Feb 2024 19:23:23 +0100 Subject: [PATCH] added another exception MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- server/app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/app.py b/server/app.py index a93b13e..9800758 100644 --- a/server/app.py +++ b/server/app.py @@ -144,6 +144,8 @@ def start_mqtt_publishers(universe_count): # Lists in python start at 0, print(dmxPacket[i-1], end=" ") + except Exception as e: + print(f"Error in universes {universe_list}: {e}") except KeyboardInterrupt: break except Exception as e: