commit 517f649532daa0a3b9acad19fbd6254c8e4be3a9 parent 0240b8c9249326a051b58bbb148be80f47796923 Author: ThomasV <thomasv@gitorious> Date: Tue, 29 Jul 2014 17:53:31 +0200 fix: missing break Diffstat:
M | lib/network.py | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/lib/network.py b/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)