From af0a536a2600a6940af79f9352a307c88aa1ff63 Mon Sep 17 00:00:00 2001 From: Jens Ullmert Date: Wed, 27 Jul 2022 16:07:20 +0200 Subject: [PATCH] print fix --- Python/sock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/sock.py b/Python/sock.py index fc1be78..8d9941a 100644 --- a/Python/sock.py +++ b/Python/sock.py @@ -157,7 +157,7 @@ async def rdm_state(): global DMXRDMFLAG if USERS and DMXRDMFLAG: #message = "rdm=" + DMXRDM + ";" - print("RDM EVENT " + DMXRDM) + print("RDM EVENT ", DMXRDM) await asyncio.wait([user.send("rdm=test;") for user in USERS])