added another exception

Signed-off-by: Ebbe Baß <ebbe.bass>
main
Ebbe Baß 2024-02-14 19:23:23 +01:00
parent 7ab0074933
commit 04372d1f2b
1 changed files with 2 additions and 0 deletions

View File

@ -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: