Browse Source

fix: missing break

283
ThomasV 10 years ago
parent
commit
517f649532
  1. 1
      lib/network.py

1
lib/network.py

@ -254,6 +254,7 @@ class Network(threading.Thread):
i = random.choice(self.interfaces.values())
if i.is_connected:
self.switch_to_interface(i)
break
else:
self.interfaces.pop(i.server)

Loading…
Cancel
Save