From b78358336c68dfe19449a2c6a0f251e5e8d41dbe Mon Sep 17 00:00:00 2001 From: "Robin.Mueller" <robin.mueller.m@gmail.com> Date: Sat, 18 Apr 2020 12:50:10 +0200 Subject: [PATCH] 0 replaced by False --- comIF/obsw_ethernet_com_if.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comIF/obsw_ethernet_com_if.py b/comIF/obsw_ethernet_com_if.py index a9516ab..146e12d 100644 --- a/comIF/obsw_ethernet_com_if.py +++ b/comIF/obsw_ethernet_com_if.py @@ -97,7 +97,7 @@ class EthernetComIF(CommunicationInterface): """ try: self.sock_receive.bind(self.receive_address) - self.sock_receive.setblocking(0) + self.sock_receive.setblocking(False) except OSError: print("Socket already set-up.") # print("Socket Receive Address: " + str(g.G_REC_ADDRESS)) -- GitLab