From c4f7266a77974e4522ce0e2f39ddc7c5259fcc36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Wed, 14 Feb 2024 02:39:10 +0100 Subject: [PATCH] test 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, 1 insertion(+), 1 deletion(-) diff --git a/server/app.py b/server/app.py index 4db53dc..8cc88a4 100644 --- a/server/app.py +++ b/server/app.py @@ -155,7 +155,7 @@ def start_mqtt_publishers(universe_count): print("universe count: "+str(used_universes)) universes_to_publish = list(range(1, used_universes + 1)) # Create and start a thread for each universe - print(universes_to_publish) + print(str(universes_to_publish)) for universe in range(universes_to_publish): print(universe) threads = [threading.Thread(target=mqtt_publisher, args=(int(universe),))]