From e476c0c46d59b61c0dd3659e47237e099514b023 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sun, 18 Feb 2024 13:18:38 +0100 Subject: [PATCH] fixed disct shit 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 b44f663..83b30b2 100644 --- a/server/app.py +++ b/server/app.py @@ -147,7 +147,7 @@ def tube_index_updater(tube_index): cur.execute("SELECT mac_address, universe, dmx_address FROM tubes") result = cur.fetchall() cur.close() - tube_index = [str(result)] + tube_index = str(result) print("Updated tube index with values: "+str(tube_index)) except Exception as e: print(e)