Arduino Yun and Bridge Python

Thanks I find the problem I guess. I did all (Bridge.begin()...) excepting to change the IP adress inside of the Python code :cold_sweat:. So I checked the sockets.py and changed it:

def test_client():
from time import sleep
i = server.connect('192.168.1.100', 5555)
while server.is_connecting(i):
server.run()
if not server.is_connected(i):
print "error"
return
print "connected"
server.send(i, "test")
server.run()
server.close(i)
server.run()

With my Yun's IP, but that print "error", should I conclude I can't connect to the Yun? Or did I failed to change the IP adress inside of the Python code? Which part of code you changed?