fixed error message

This commit is contained in:
Seth Samuel 2024-12-15 00:25:49 +13:00
parent c33804c747
commit ab0e8cce86

View file

@ -84,7 +84,7 @@ def runningThread():
sock = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
sock.bind((UDP_IP,portToConnect))
except:
print("please check you are able to open the socket on this system\ntired to open port: "+portToConnect)
print("please check you are able to open the socket on this system\ntired to open port: "+str(portToConnect))
exit()
try: